/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.25 * * 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 * changes to this file unless you know what you are doing--modify the SWIG * interface file instead. * ----------------------------------------------------------------------------- */ #define SWIGPYTHON /*********************************************************************** * * This section contains generic SWIG labels for method/variable * declarations/attributes, and other compiler dependent labels. * ************************************************************************/ /* template workaround for compilers that cannot correctly implement the C++ standard */ #ifndef SWIGTEMPLATEDISAMBIGUATOR # if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) # define SWIGTEMPLATEDISAMBIGUATOR template # else # define SWIGTEMPLATEDISAMBIGUATOR # endif #endif /* inline attribute */ #ifndef SWIGINLINE # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) # define SWIGINLINE inline # else # define SWIGINLINE # endif #endif /* attribute recognised by some compilers to avoid 'unused' warnings */ #ifndef SWIGUNUSED # if defined(__GNUC__) || defined(__ICC) # define SWIGUNUSED __attribute__ ((unused)) # else # define SWIGUNUSED # endif #endif /* internal SWIG method */ #ifndef SWIGINTERN # define SWIGINTERN static SWIGUNUSED #endif /* internal inline SWIG method */ #ifndef SWIGINTERNINLINE # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE #endif /* exporting methods for Windows DLLs */ #ifndef SWIGEXPORT # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # if defined(STATIC_LINKED) # define SWIGEXPORT # else # define SWIGEXPORT __declspec(dllexport) # endif # else # define SWIGEXPORT # endif #endif /* calling conventions for Windows */ #ifndef SWIGSTDCALL # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # define SWIGSTDCALL __stdcall # else # define SWIGSTDCALL # endif #endif #include /*********************************************************************** * swigrun.swg * * This file contains generic CAPI SWIG runtime support for pointer * type checking. * ************************************************************************/ /* This should only be incremented when either the layout of swig_type_info changes, or for whatever reason, the runtime changes incompatibly */ #define SWIG_RUNTIME_VERSION "2" /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ #ifdef SWIG_TYPE_TABLE # define SWIG_QUOTE_STRING(x) #x # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) #else # define SWIG_TYPE_TABLE_NAME #endif /* You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for creating a static or dynamic library from the swig runtime code. In 99.9% of the cases, swig just needs to declare them as 'static'. But only do this if is strictly necessary, ie, if you have problems with your compiler or so. */ #ifndef SWIGRUNTIME # define SWIGRUNTIME SWIGINTERN #endif #ifndef SWIGRUNTIMEINLINE # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE #endif #include #ifdef __cplusplus extern "C" { #endif typedef void *(*swig_converter_func)(void *); typedef struct swig_type_info *(*swig_dycast_func)(void **); /* Structure to store inforomation on one type */ typedef struct swig_type_info { const char *name; /* mangled name of this type */ const char *str; /* human readable name of this type */ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ struct swig_cast_info *cast; /* linked list of types that can cast into this type */ void *clientdata; /* language specific type data */ } swig_type_info; /* Structure to store a type and conversion function used for casting */ typedef struct swig_cast_info { swig_type_info *type; /* pointer to type that is equivalent to this type */ swig_converter_func converter; /* function to cast the void pointers */ struct swig_cast_info *next; /* pointer to next cast in linked list */ struct swig_cast_info *prev; /* pointer to the previous cast */ } swig_cast_info; /* Structure used to store module information * Each module generates one structure like this, and the runtime collects * all of these structures and stores them in a circularly linked list.*/ typedef struct swig_module_info { swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ size_t size; /* Number of types in this module */ struct swig_module_info *next; /* Pointer to next element in circularly linked list */ swig_type_info **type_initial; /* Array of initially generated type structures */ swig_cast_info **cast_initial; /* Array of initially generated casting structures */ void *clientdata; /* Language specific module data */ } swig_module_info; /* Compare two type names skipping the space characters, therefore "char*" == "char *" and "Class" == "Class", etc. Return 0 when the two name types are equivalent, as in strncmp, but skipping ' '. */ SWIGRUNTIME int SWIG_TypeNameComp(const char *f1, const char *l1, const char *f2, const char *l2) { for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { while ((*f1 == ' ') && (f1 != l1)) ++f1; while ((*f2 == ' ') && (f2 != l2)) ++f2; if (*f1 != *f2) return (int)(*f1 - *f2); } return (l1 - f1) - (l2 - f2); } /* Check type equivalence in a name list like ||... Return 0 if not equal, 1 if equal */ SWIGRUNTIME int SWIG_TypeEquiv(const char *nb, const char *tb) { int equiv = 0; const char* te = tb + strlen(tb); const char* ne = nb; while (!equiv && *ne) { for (nb = ne; *ne; ++ne) { if (*ne == '|') break; } equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; if (*ne) ++ne; } return equiv; } /* Check type equivalence in a name list like ||... Return 0 if equal, -1 if nb < tb, 1 if nb > tb */ SWIGRUNTIME int SWIG_TypeCompare(const char *nb, const char *tb) { int equiv = 0; const char* te = tb + strlen(tb); const char* ne = nb; while (!equiv && *ne) { for (nb = ne; *ne; ++ne) { if (*ne == '|') break; } equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; if (*ne) ++ne; } return equiv; } /* think of this as a c++ template<> or a scheme macro */ #define SWIG_TypeCheck_Template(comparison, ty) \ if (ty) { \ swig_cast_info *iter = ty->cast; \ while (iter) { \ if (comparison) { \ if (iter == ty->cast) return iter; \ /* Move iter to the top of the linked list */ \ iter->prev->next = iter->next; \ if (iter->next) \ iter->next->prev = iter->prev; \ iter->next = ty->cast; \ iter->prev = 0; \ if (ty->cast) ty->cast->prev = iter; \ ty->cast = iter; \ return iter; \ } \ iter = iter->next; \ } \ } \ return 0 /* Check the typename */ SWIGRUNTIME swig_cast_info * SWIG_TypeCheck(const char *c, swig_type_info *ty) { SWIG_TypeCheck_Template(strcmp(iter->type->name, c) == 0, ty); } /* Same as previous function, except strcmp is replaced with a pointer comparison */ SWIGRUNTIME swig_cast_info * SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *into) { SWIG_TypeCheck_Template(iter->type == from, into); } /* Cast a pointer up an inheritance hierarchy */ SWIGRUNTIMEINLINE void * SWIG_TypeCast(swig_cast_info *ty, void *ptr) { return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr); } /* Dynamic pointer casting. Down an inheritance hierarchy */ SWIGRUNTIME swig_type_info * SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { swig_type_info *lastty = ty; if (!ty || !ty->dcast) return ty; while (ty && (ty->dcast)) { ty = (*ty->dcast)(ptr); if (ty) lastty = ty; } return lastty; } /* Return the name associated with this type */ SWIGRUNTIMEINLINE const char * SWIG_TypeName(const swig_type_info *ty) { return ty->name; } /* Return the pretty name associated with this type, that is an unmangled type name in a form presentable to the user. */ SWIGRUNTIME const char * SWIG_TypePrettyName(const swig_type_info *type) { /* The "str" field contains the equivalent pretty names of the type, separated by vertical-bar characters. We choose to print the last name, as it is often (?) the most specific. */ if (type->str != NULL) { const char *last_name = type->str; const char *s; for (s = type->str; *s; s++) if (*s == '|') last_name = s+1; return last_name; } else return type->name; } /* Set the clientdata field for a type */ SWIGRUNTIME void SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { if (!ti->clientdata) { swig_cast_info *cast = ti->cast; /* if (ti->clientdata == clientdata) return; */ ti->clientdata = clientdata; while (cast) { if (!cast->converter) SWIG_TypeClientData(cast->type, clientdata); cast = cast->next; } } } /* Search for a swig_type_info structure only by mangled name Search is a O(log #types) We start searching at module start, and finish searching when start == end. Note: if start == end at the beginning of the function, we go all the way around the circular list. */ SWIGRUNTIME swig_type_info * SWIG_MangledTypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name) { swig_module_info *iter = start; do { if (iter->size) { register size_t l = 0; register size_t r = iter->size - 1; do { /* since l+r >= 0, we can (>> 1) instead (/ 2) */ register size_t i = (l + r) >> 1; const char *iname = iter->types[i]->name; if (iname) { register int compare = strcmp(name, iname); if (compare == 0) { return iter->types[i]; } else if (compare < 0) { if (i) { r = i - 1; } else { break; } } else if (compare > 0) { l = i + 1; } } else { break; /* should never happen */ } } while (l <= r); } iter = iter->next; } while (iter != end); return 0; } /* Search for a swig_type_info structure for either a mangled name or a human readable name. It first searches the mangled names of the types, which is a O(log #types) If a type is not found it then searches the human readable names, which is O(#types). We start searching at module start, and finish searching when start == end. Note: if start == end at the beginning of the function, we go all the way around the circular list. */ SWIGRUNTIME swig_type_info * SWIG_TypeQueryModule(swig_module_info *start, swig_module_info *end, const char *name) { /* STEP 1: Search the name field using binary search */ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); if (ret) { return ret; } else { /* STEP 2: If the type hasn't been found, do a complete search of the str field (the human readable name) */ swig_module_info *iter = start; do { register size_t i = 0; for (; i < iter->size; ++i) { if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) return iter->types[i]; } iter = iter->next; } while (iter != end); } /* neither found a match */ return 0; } /* Pack binary data into a string */ SWIGRUNTIME char * SWIG_PackData(char *c, void *ptr, size_t sz) { static const char hex[17] = "0123456789abcdef"; register const unsigned char *u = (unsigned char *) ptr; register const unsigned char *eu = u + sz; for (; u != eu; ++u) { register unsigned char uu = *u; *(c++) = hex[(uu & 0xf0) >> 4]; *(c++) = hex[uu & 0xf]; } return c; } /* Unpack binary data from a string */ SWIGRUNTIME const char * SWIG_UnpackData(const char *c, void *ptr, size_t sz) { register unsigned char *u = (unsigned char *) ptr; register const unsigned char *eu = u + sz; for (; u != eu; ++u) { register char d = *(c++); register unsigned char uu = 0; if ((d >= '0') && (d <= '9')) uu = ((d - '0') << 4); else if ((d >= 'a') && (d <= 'f')) uu = ((d - ('a'-10)) << 4); else return (char *) 0; d = *(c++); if ((d >= '0') && (d <= '9')) uu |= (d - '0'); else if ((d >= 'a') && (d <= 'f')) uu |= (d - ('a'-10)); else return (char *) 0; *u = uu; } return c; } /* Pack 'void *' into a string buffer. */ SWIGRUNTIME char * SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { char *r = buff; if ((2*sizeof(void *) + 2) > bsz) return 0; *(r++) = '_'; r = SWIG_PackData(r,&ptr,sizeof(void *)); if (strlen(name) + 1 > (bsz - (r - buff))) return 0; strcpy(r,name); return buff; } SWIGRUNTIME const char * SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { if (*c != '_') { if (strcmp(c,"NULL") == 0) { *ptr = (void *) 0; return name; } else { return 0; } } return SWIG_UnpackData(++c,ptr,sizeof(void *)); } SWIGRUNTIME char * SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { char *r = buff; size_t lname = (name ? strlen(name) : 0); if ((2*sz + 2 + lname) > bsz) return 0; *(r++) = '_'; r = SWIG_PackData(r,ptr,sz); if (lname) { strncpy(r,name,lname+1); } else { *r = 0; } return buff; } SWIGRUNTIME const char * SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { if (*c != '_') { if (strcmp(c,"NULL") == 0) { memset(ptr,0,sz); return name; } else { return 0; } } return SWIG_UnpackData(++c,ptr,sz); } #ifdef __cplusplus } #endif /* ----------------------------------------------------------------------------- * SWIG API. Portion that goes into the runtime * ----------------------------------------------------------------------------- */ #ifdef __cplusplus extern "C" { #endif /* ----------------------------------------------------------------------------- * for internal method declarations * ----------------------------------------------------------------------------- */ #ifndef SWIGINTERN # define SWIGINTERN static SWIGUNUSED #endif #ifndef SWIGINTERNINLINE # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE #endif /* Exception handling in wrappers */ #define SWIG_fail goto fail #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) #define SWIG_append_errmsg(msg) SWIG_Python_AddErrMesg(msg,0) #define SWIG_preppend_errmsg(msg) SWIG_Python_AddErrMesg(msg,1) #define SWIG_type_error(type,obj) SWIG_Python_TypeError(type,obj) #define SWIG_null_ref(type) SWIG_Python_NullRef(type) /* Contract support */ #define SWIG_contract_assert(expr, msg) \ if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else /* ----------------------------------------------------------------------------- * Constant declarations * ----------------------------------------------------------------------------- */ /* Constant Types */ #define SWIG_PY_INT 1 #define SWIG_PY_FLOAT 2 #define SWIG_PY_STRING 3 #define SWIG_PY_POINTER 4 #define SWIG_PY_BINARY 5 /* Constant information structure */ typedef struct swig_const_info { int type; char *name; long lvalue; double dvalue; void *pvalue; swig_type_info **ptype; } swig_const_info; /* ----------------------------------------------------------------------------- * Alloc. memory flags * ----------------------------------------------------------------------------- */ #define SWIG_OLDOBJ 1 #define SWIG_NEWOBJ SWIG_OLDOBJ + 1 #define SWIG_PYSTR SWIG_NEWOBJ + 1 #ifdef __cplusplus } #endif /*********************************************************************** * pyrun.swg * * This file contains the runtime support for Python modules * and includes code for managing global variables and pointer * type checking. * * Author : David Beazley (beazley@cs.uchicago.edu) ************************************************************************/ /* Common SWIG API */ #define SWIG_ConvertPtr(obj, pp, type, flags) SWIG_Python_ConvertPtr(obj, pp, type, flags) #define SWIG_NewPointerObj(p, type, flags) SWIG_Python_NewPointerObj(p, type, flags) #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) /* Python-specific SWIG API */ #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags) #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) /* Runtime API */ #define SWIG_GetModule(clientdata) SWIG_Python_GetModule() #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) /* ----------------------------------------------------------------------------- * Pointer declarations * ----------------------------------------------------------------------------- */ /* Use SWIG_NO_COBJECT_TYPES to force the use of strings to represent C/C++ pointers in the python side. Very useful for debugging, but not always safe. */ #if !defined(SWIG_NO_COBJECT_TYPES) && !defined(SWIG_COBJECT_TYPES) # define SWIG_COBJECT_TYPES #endif /* Flags for pointer conversion */ #define SWIG_POINTER_EXCEPTION 0x1 #define SWIG_POINTER_DISOWN 0x2 /* Add PyOS_snprintf for old Pythons */ #if PY_VERSION_HEX < 0x02020000 #define PyOS_snprintf snprintf #endif #ifdef __cplusplus extern "C" { #endif /* ----------------------------------------------------------------------------- * Create a new pointer string * ----------------------------------------------------------------------------- */ #ifndef SWIG_BUFFER_SIZE #define SWIG_BUFFER_SIZE 1024 #endif #if defined(SWIG_COBJECT_TYPES) #if !defined(SWIG_COBJECT_PYTHON) /* ----------------------------------------------------------------------------- * Implements a simple Swig Object type, and use it instead of PyCObject * ----------------------------------------------------------------------------- */ typedef struct { PyObject_HEAD void *ptr; const char *desc; } PySwigObject; /* Declarations for objects of type PySwigObject */ SWIGRUNTIME int PySwigObject_print(PySwigObject *v, FILE *fp, int flags) { char result[SWIG_BUFFER_SIZE]; flags = flags; if (SWIG_PackVoidPtr(result, v->ptr, v->desc, sizeof(result))) { fputs("", fp); return 0; } else { return 1; } } SWIGRUNTIME PyObject * PySwigObject_repr(PySwigObject *v) { char result[SWIG_BUFFER_SIZE]; return SWIG_PackVoidPtr(result, v->ptr, v->desc, sizeof(result)) ? PyString_FromFormat("", result) : 0; } SWIGRUNTIME PyObject * PySwigObject_str(PySwigObject *v) { char result[SWIG_BUFFER_SIZE]; return SWIG_PackVoidPtr(result, v->ptr, v->desc, sizeof(result)) ? PyString_FromString(result) : 0; } SWIGRUNTIME PyObject * PySwigObject_long(PySwigObject *v) { return PyLong_FromVoidPtr(v->ptr); } SWIGRUNTIME PyObject * PySwigObject_format(const char* fmt, PySwigObject *v) { PyObject *res = NULL; PyObject *args = PyTuple_New(1); if (args && (PyTuple_SetItem(args, 0, PySwigObject_long(v)) == 0)) { PyObject *ofmt = PyString_FromString(fmt); if (ofmt) { res = PyString_Format(ofmt,args); Py_DECREF(ofmt); } Py_DECREF(args); } return res; } SWIGRUNTIME PyObject * PySwigObject_oct(PySwigObject *v) { return PySwigObject_format("%o",v); } SWIGRUNTIME PyObject * PySwigObject_hex(PySwigObject *v) { return PySwigObject_format("%x",v); } SWIGRUNTIME int PySwigObject_compare(PySwigObject *v, PySwigObject *w) { int c = strcmp(v->desc, w->desc); if (c) { return (c > 0) ? 1 : -1; } else { void *i = v->ptr; void *j = w->ptr; return (i < j) ? -1 : ((i > j) ? 1 : 0); } } SWIGRUNTIME void PySwigObject_dealloc(PySwigObject *self) { PyObject_DEL(self); } SWIGRUNTIME PyTypeObject* PySwigObject_type(void) { static char pyswigobject_type__doc__[] = "Swig object carries a C/C++ instance pointer"; static PyNumberMethods PySwigObject_as_number = { (binaryfunc)0, /*nb_add*/ (binaryfunc)0, /*nb_subtract*/ (binaryfunc)0, /*nb_multiply*/ (binaryfunc)0, /*nb_divide*/ (binaryfunc)0, /*nb_remainder*/ (binaryfunc)0, /*nb_divmod*/ (ternaryfunc)0,/*nb_power*/ (unaryfunc)0, /*nb_negative*/ (unaryfunc)0, /*nb_positive*/ (unaryfunc)0, /*nb_absolute*/ (inquiry)0, /*nb_nonzero*/ 0, /*nb_invert*/ 0, /*nb_lshift*/ 0, /*nb_rshift*/ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ (coercion)0, /*nb_coerce*/ (unaryfunc)PySwigObject_long, /*nb_int*/ (unaryfunc)PySwigObject_long, /*nb_long*/ (unaryfunc)0, /*nb_float*/ (unaryfunc)PySwigObject_oct, /*nb_oct*/ (unaryfunc)PySwigObject_hex, /*nb_hex*/ #if PY_VERSION_HEX >= 0x02000000 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ #endif }; static PyTypeObject pyswigobject_type #if !defined(__cplusplus) ; static int type_init = 0; if (!type_init) { PyTypeObject tmp #endif = { PyObject_HEAD_INIT(&PyType_Type) 0, /*ob_size*/ (char *)"PySwigObject", /*tp_name*/ sizeof(PySwigObject), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ (destructor)PySwigObject_dealloc, /*tp_dealloc*/ (printfunc)PySwigObject_print, /*tp_print*/ (getattrfunc)0, /*tp_getattr*/ (setattrfunc)0, /*tp_setattr*/ (cmpfunc)PySwigObject_compare, /*tp_compare*/ (reprfunc)PySwigObject_repr, /*tp_repr*/ &PySwigObject_as_number, /*tp_as_number*/ 0, /*tp_as_sequence*/ 0, /*tp_as_mapping*/ (hashfunc)0, /*tp_hash*/ (ternaryfunc)0, /*tp_call*/ (reprfunc)PySwigObject_str, /*tp_str*/ /* Space for future expansion */ 0,0,0,0, pyswigobject_type__doc__, /* Documentation string */ #if PY_VERSION_HEX >= 0x02000000 0, /* tp_traverse */ 0, /* tp_clear */ #endif #if PY_VERSION_HEX >= 0x02010000 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #endif #if PY_VERSION_HEX >= 0x02020000 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; #if !defined(__cplusplus) pyswigobject_type = tmp; type_init = 1; } #endif return &pyswigobject_type; } SWIGRUNTIME PyObject * PySwigObject_FromVoidPtrAndDesc(void *ptr, const char *desc) { PySwigObject *self = PyObject_NEW(PySwigObject, PySwigObject_type()); if (self) { self->ptr = ptr; self->desc = desc; } return (PyObject *)self; } SWIGRUNTIMEINLINE void * PySwigObject_AsVoidPtr(PyObject *self) { return ((PySwigObject *)self)->ptr; } SWIGRUNTIMEINLINE const char * PySwigObject_GetDesc(PyObject *self) { return ((PySwigObject *)self)->desc; } SWIGRUNTIMEINLINE int PySwigObject_Check(PyObject *op) { return ((op)->ob_type == PySwigObject_type()) || (strcmp((op)->ob_type->tp_name,"PySwigObject") == 0); } /* ----------------------------------------------------------------------------- * Implements a simple Swig Packed type, and use it instead of string * ----------------------------------------------------------------------------- */ typedef struct { PyObject_HEAD void *pack; const char *desc; size_t size; } PySwigPacked; SWIGRUNTIME int PySwigPacked_print(PySwigPacked *v, FILE *fp, int flags) { char result[SWIG_BUFFER_SIZE]; flags = flags; fputs("pack, v->size, 0, sizeof(result))) { fputs("at ", fp); fputs(result, fp); } fputs(v->desc,fp); fputs(">", fp); return 0; } SWIGRUNTIME PyObject * PySwigPacked_repr(PySwigPacked *v) { char result[SWIG_BUFFER_SIZE]; if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { return PyString_FromFormat("", result, v->desc); } else { return PyString_FromFormat("", v->desc); } } SWIGRUNTIME PyObject * PySwigPacked_str(PySwigPacked *v) { char result[SWIG_BUFFER_SIZE]; if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ return PyString_FromFormat("%s%s", result, v->desc); } else { return PyString_FromFormat("%s", v->desc); } } SWIGRUNTIME int PySwigPacked_compare(PySwigPacked *v, PySwigPacked *w) { int c = strcmp(v->desc, w->desc); if (c) { return (c > 0) ? 1 : -1; } else { size_t i = v->size; size_t j = w->size; int s = (i < j) ? -1 : ((i > j) ? 1 : 0); return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); } } SWIGRUNTIME void PySwigPacked_dealloc(PySwigPacked *self) { free(self->pack); PyObject_DEL(self); } SWIGRUNTIME PyTypeObject* PySwigPacked_type(void) { static char pyswigpacked_type__doc__[] = "Swig object carries a C/C++ instance pointer"; static PyTypeObject pyswigpacked_type #if !defined(__cplusplus) ; static int type_init = 0; if (!type_init) { PyTypeObject tmp #endif = { PyObject_HEAD_INIT(&PyType_Type) 0, /*ob_size*/ (char *)"PySwigPacked", /*tp_name*/ sizeof(PySwigPacked), /*tp_basicsize*/ 0, /*tp_itemsize*/ /* methods */ (destructor)PySwigPacked_dealloc, /*tp_dealloc*/ (printfunc)PySwigPacked_print, /*tp_print*/ (getattrfunc)0, /*tp_getattr*/ (setattrfunc)0, /*tp_setattr*/ (cmpfunc)PySwigPacked_compare, /*tp_compare*/ (reprfunc)PySwigPacked_repr, /*tp_repr*/ 0, /*tp_as_number*/ 0, /*tp_as_sequence*/ 0, /*tp_as_mapping*/ (hashfunc)0, /*tp_hash*/ (ternaryfunc)0, /*tp_call*/ (reprfunc)PySwigPacked_str, /*tp_str*/ /* Space for future expansion */ 0,0,0,0, pyswigpacked_type__doc__, /* Documentation string */ #if PY_VERSION_HEX >= 0x02000000 0, /* tp_traverse */ 0, /* tp_clear */ #endif #if PY_VERSION_HEX >= 0x02010000 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #endif #if PY_VERSION_HEX >= 0x02020000 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; #if !defined(__cplusplus) pyswigpacked_type = tmp; type_init = 1; } #endif return &pyswigpacked_type; } SWIGRUNTIME PyObject * PySwigPacked_FromDataAndDesc(void *ptr, size_t size, const char *desc) { PySwigPacked *self = PyObject_NEW(PySwigPacked, PySwigPacked_type()); if (self == NULL) { return NULL; } else { void *pack = malloc(size); if (pack) { memcpy(pack, ptr, size); self->pack = pack; self->desc = desc; self->size = size; return (PyObject *) self; } return NULL; } } SWIGRUNTIMEINLINE const char * PySwigPacked_UnpackData(PyObject *obj, void *ptr, size_t size) { PySwigPacked *self = (PySwigPacked *)obj; if (self->size != size) return 0; memcpy(ptr, self->pack, size); return self->desc; } SWIGRUNTIMEINLINE const char * PySwigPacked_GetDesc(PyObject *self) { return ((PySwigPacked *)self)->desc; } SWIGRUNTIMEINLINE int PySwigPacked_Check(PyObject *op) { return ((op)->ob_type == PySwigPacked_type()) || (strcmp((op)->ob_type->tp_name,"PySwigPacked") == 0); } #else /* ----------------------------------------------------------------------------- * Use the old Python PyCObject instead of PySwigObject * ----------------------------------------------------------------------------- */ #define PySwigObject_GetDesc(obj) PyCObject_GetDesc(obj) #define PySwigObject_Check(obj) PyCObject_Check(obj) #define PySwigObject_AsVoidPtr(obj) PyCObject_AsVoidPtr(obj) #define PySwigObject_FromVoidPtrAndDesc(p, d) PyCObject_FromVoidPtrAndDesc(p, d, NULL) #endif #endif /* ----------------------------------------------------------------------------- * errors manipulation * ----------------------------------------------------------------------------- */ SWIGRUNTIME void SWIG_Python_TypeError(const char *type, PyObject *obj) { if (type) { #if defined(SWIG_COBJECT_TYPES) if (obj && PySwigObject_Check(obj)) { const char *otype = (const char *) PySwigObject_GetDesc(obj); if (otype) { PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'PySwigObject(%s)' is received", type, otype); return; } } else #endif { const char *otype = (obj ? obj->ob_type->tp_name : 0); if (otype) { PyObject *str = PyObject_Str(obj); const char *cstr = str ? PyString_AsString(str) : 0; if (cstr) { PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", type, otype, cstr); } else { PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", type, otype); } Py_XDECREF(str); return; } } PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); } else { PyErr_Format(PyExc_TypeError, "unexpected type is received"); } } SWIGRUNTIMEINLINE void SWIG_Python_NullRef(const char *type) { if (type) { PyErr_Format(PyExc_TypeError, "null reference of type '%s' was received",type); } else { PyErr_Format(PyExc_TypeError, "null reference was received"); } } SWIGRUNTIME int SWIG_Python_AddErrMesg(const char* mesg, int infront) { if (PyErr_Occurred()) { PyObject *type = 0; PyObject *value = 0; PyObject *traceback = 0; PyErr_Fetch(&type, &value, &traceback); if (value) { PyObject *old_str = PyObject_Str(value); Py_XINCREF(type); PyErr_Clear(); if (infront) { PyErr_Format(type, "%s %s", mesg, PyString_AsString(old_str)); } else { PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg); } Py_DECREF(old_str); } return 1; } else { return 0; } } SWIGRUNTIME int SWIG_Python_ArgFail(int argnum) { if (PyErr_Occurred()) { /* add information about failing argument */ char mesg[256]; PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); return SWIG_Python_AddErrMesg(mesg, 1); } else { return 0; } } /* ----------------------------------------------------------------------------- * pointers/data manipulation * ----------------------------------------------------------------------------- */ /* Convert a pointer value */ SWIGRUNTIME int SWIG_Python_ConvertPtr(PyObject *obj, void **ptr, swig_type_info *ty, int flags) { swig_cast_info *tc; const char *c = 0; static PyObject *SWIG_this = 0; int newref = 0; PyObject *pyobj = 0; void *vptr; if (!obj) return 0; if (obj == Py_None) { *ptr = 0; return 0; } #ifdef SWIG_COBJECT_TYPES if (!(PySwigObject_Check(obj))) { if (!SWIG_this) SWIG_this = PyString_FromString("this"); pyobj = obj; obj = PyObject_GetAttr(obj,SWIG_this); newref = 1; if (!obj) goto type_error; if (!PySwigObject_Check(obj)) { Py_DECREF(obj); goto type_error; } } vptr = PySwigObject_AsVoidPtr(obj); c = (const char *) PySwigObject_GetDesc(obj); if (newref) { Py_DECREF(obj); } goto type_check; #else if (!(PyString_Check(obj))) { if (!SWIG_this) SWIG_this = PyString_FromString("this"); pyobj = obj; obj = PyObject_GetAttr(obj,SWIG_this); newref = 1; if (!obj) goto type_error; if (!PyString_Check(obj)) { Py_DECREF(obj); goto type_error; } } c = PyString_AS_STRING(obj); /* Pointer values must start with leading underscore */ c = SWIG_UnpackVoidPtr(c, &vptr, ty->name); if (newref) { Py_DECREF(obj); } if (!c) goto type_error; #endif type_check: if (ty) { tc = SWIG_TypeCheck(c,ty); if (!tc) goto type_error; *ptr = SWIG_TypeCast(tc,vptr); } else { *ptr = vptr; } if ((pyobj) && (flags & SWIG_POINTER_DISOWN)) { PyObject_SetAttrString(pyobj,(char*)"thisown",Py_False); } return 0; type_error: PyErr_Clear(); if (pyobj && !obj) { obj = pyobj; if (PyCFunction_Check(obj)) { /* here we get the method pointer for callbacks */ char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); c = doc ? strstr(doc, "swig_ptr: ") : 0; if (c) { c = ty ? SWIG_UnpackVoidPtr(c + 10, &vptr, ty->name) : 0; if (!c) goto type_error; goto type_check; } } } if (flags & SWIG_POINTER_EXCEPTION) { if (ty) { SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); } else { SWIG_Python_TypeError("C/C++ pointer", obj); } } return -1; } /* Convert a pointer value, signal an exception on a type mismatch */ SWIGRUNTIME void * SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) { void *result; if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { PyErr_Clear(); if (flags & SWIG_POINTER_EXCEPTION) { SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); SWIG_Python_ArgFail(argnum); } } return result; } /* Convert a packed value value */ SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty, int flags) { swig_cast_info *tc; const char *c = 0; #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON) c = PySwigPacked_UnpackData(obj, ptr, sz); #else if ((!obj) || (!PyString_Check(obj))) goto type_error; c = PyString_AS_STRING(obj); /* Pointer values must start with leading underscore */ c = SWIG_UnpackDataName(c, ptr, sz, ty->name); #endif if (!c) goto type_error; if (ty) { tc = SWIG_TypeCheck(c,ty); if (!tc) goto type_error; } return 0; type_error: PyErr_Clear(); if (flags & SWIG_POINTER_EXCEPTION) { if (ty) { SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); } else { SWIG_Python_TypeError("C/C++ packed data", obj); } } return -1; } /* Create a new array object */ SWIGRUNTIME PyObject * SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int own) { PyObject *robj = 0; if (!type) { if (!PyErr_Occurred()) { PyErr_Format(PyExc_TypeError, "Swig: null type passed to NewPointerObj"); } return robj; } if (!ptr) { Py_INCREF(Py_None); return Py_None; } #ifdef SWIG_COBJECT_TYPES robj = PySwigObject_FromVoidPtrAndDesc((void *) ptr, (char *)type->name); #else { char result[SWIG_BUFFER_SIZE]; robj = SWIG_PackVoidPtr(result, ptr, type->name, sizeof(result)) ? PyString_FromString(result) : 0; } #endif if (!robj || (robj == Py_None)) return robj; if (type->clientdata) { PyObject *inst; PyObject *args = Py_BuildValue((char*)"(O)", robj); Py_DECREF(robj); inst = PyObject_CallObject((PyObject *) type->clientdata, args); Py_DECREF(args); if (inst) { if (own) { PyObject_SetAttrString(inst,(char*)"thisown",Py_True); } robj = inst; } } return robj; } SWIGRUNTIME PyObject * SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { PyObject *robj = 0; if (!ptr) { Py_INCREF(Py_None); return Py_None; } #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON) robj = PySwigPacked_FromDataAndDesc((void *) ptr, sz, (char *)type->name); #else { char result[SWIG_BUFFER_SIZE]; robj = SWIG_PackDataName(result, ptr, sz, type->name, sizeof(result)) ? PyString_FromString(result) : 0; } #endif return robj; } /* -----------------------------------------------------------------------------* * Get type list * -----------------------------------------------------------------------------*/ #ifdef SWIG_LINK_RUNTIME void *SWIG_ReturnGlobalTypeList(void *); #endif SWIGRUNTIME swig_module_info * SWIG_Python_GetModule(void) { static void *type_pointer = (void *)0; /* first check if module already created */ if (!type_pointer) { #ifdef SWIG_LINK_RUNTIME type_pointer = SWIG_ReturnGlobalTypeList((void *)0); #else type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); if (PyErr_Occurred()) { PyErr_Clear(); type_pointer = (void *)0; } } #endif return (swig_module_info *) type_pointer; } SWIGRUNTIME void SWIG_Python_SetModule(swig_module_info *swig_module) { static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table); PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, NULL); if (pointer && module) { PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); } } #ifdef __cplusplus } #endif /* -------- TYPES TABLE (BEGIN) -------- */ #define SWIGTYPE_p_apr_array_header_t swig_types[0] #define SWIGTYPE_p_apr_file_t swig_types[1] #define SWIGTYPE_p_apr_hash_t swig_types[2] #define SWIGTYPE_p_apr_int32_t swig_types[3] #define SWIGTYPE_p_apr_int64_t swig_types[4] #define SWIGTYPE_p_apr_pool_t swig_types[5] #define SWIGTYPE_p_char swig_types[6] #define SWIGTYPE_p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void swig_types[7] #define SWIGTYPE_p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[8] #define SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[9] #define SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[10] #define SWIGTYPE_p_f_p_p_svn_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[11] #define SWIGTYPE_p_f_p_p_svn_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[12] #define SWIGTYPE_p_f_p_p_svn_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[13] #define SWIGTYPE_p_f_p_p_svn_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[14] #define SWIGTYPE_p_f_p_p_svn_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[15] #define SWIGTYPE_p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[16] #define SWIGTYPE_p_f_p_void__p_svn_error_t swig_types[17] #define SWIGTYPE_p_f_p_void_apr_int64_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_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[19] #define SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void swig_types[20] #define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[21] #define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_info_t_p_apr_pool_t__p_svn_error_t swig_types[22] #define SWIGTYPE_p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void swig_types[23] #define SWIGTYPE_p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void swig_types[24] #define SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void swig_types[25] #define SWIGTYPE_p_int swig_types[26] #define SWIGTYPE_p_long swig_types[27] #define SWIGTYPE_p_p_apr_array_header_t swig_types[28] #define SWIGTYPE_p_p_apr_hash_t swig_types[29] #define SWIGTYPE_p_p_char swig_types[30] #define SWIGTYPE_p_p_svn_auth_provider_object_t swig_types[31] #define SWIGTYPE_p_p_svn_client_commit_info_t swig_types[32] #define SWIGTYPE_p_p_svn_client_ctx_t swig_types[33] #define SWIGTYPE_p_p_svn_commit_info_t swig_types[34] #define SWIGTYPE_p_p_svn_ra_session_t swig_types[35] #define SWIGTYPE_p_p_svn_string_t swig_types[36] #define SWIGTYPE_p_svn_auth_baton_t swig_types[37] #define SWIGTYPE_p_svn_auth_cred_simple_t swig_types[38] #define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_pw_t swig_types[39] #define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_t swig_types[40] #define SWIGTYPE_p_svn_auth_cred_ssl_server_trust_t swig_types[41] #define SWIGTYPE_p_svn_auth_cred_username_t swig_types[42] #define SWIGTYPE_p_svn_auth_iterstate_t swig_types[43] #define SWIGTYPE_p_svn_auth_provider_object_t swig_types[44] #define SWIGTYPE_p_svn_auth_provider_t swig_types[45] #define SWIGTYPE_p_svn_auth_ssl_server_cert_info_t swig_types[46] #define SWIGTYPE_p_svn_client_commit_info_t swig_types[47] #define SWIGTYPE_p_svn_client_commit_item2_t swig_types[48] #define SWIGTYPE_p_svn_client_commit_item_t swig_types[49] #define SWIGTYPE_p_svn_client_ctx_t swig_types[50] #define SWIGTYPE_p_svn_client_diff_summarize_kind_t swig_types[51] #define SWIGTYPE_p_svn_client_diff_summarize_t swig_types[52] #define SWIGTYPE_p_svn_client_proplist_item_t swig_types[53] #define SWIGTYPE_p_svn_commit_info_t swig_types[54] #define SWIGTYPE_p_svn_config_t swig_types[55] #define SWIGTYPE_p_svn_delta_editor_t swig_types[56] #define SWIGTYPE_p_svn_diff_datasource_e swig_types[57] #define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[58] #define SWIGTYPE_p_svn_diff_file_options_t swig_types[59] #define SWIGTYPE_p_svn_diff_fns_t swig_types[60] #define SWIGTYPE_p_svn_diff_output_fns_t swig_types[61] #define SWIGTYPE_p_svn_diff_t swig_types[62] #define SWIGTYPE_p_svn_dirent_t swig_types[63] #define SWIGTYPE_p_svn_errno_t swig_types[64] #define SWIGTYPE_p_svn_error_t swig_types[65] #define SWIGTYPE_p_svn_info_t swig_types[66] #define SWIGTYPE_p_svn_io_dirent_t swig_types[67] #define SWIGTYPE_p_svn_io_file_del_t swig_types[68] #define SWIGTYPE_p_svn_lock_t swig_types[69] #define SWIGTYPE_p_svn_log_changed_path_t swig_types[70] #define SWIGTYPE_p_svn_node_kind_t swig_types[71] #define SWIGTYPE_p_svn_opt_revision_t swig_types[72] #define SWIGTYPE_p_svn_opt_revision_value_t swig_types[73] #define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[74] #define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[75] #define SWIGTYPE_p_svn_prop_kind swig_types[76] #define SWIGTYPE_p_svn_ra_callbacks2_t swig_types[77] #define SWIGTYPE_p_svn_ra_callbacks_t swig_types[78] #define SWIGTYPE_p_svn_ra_plugin_t swig_types[79] #define SWIGTYPE_p_svn_ra_reporter2_t swig_types[80] #define SWIGTYPE_p_svn_ra_reporter_t swig_types[81] #define SWIGTYPE_p_svn_ra_session_t swig_types[82] #define SWIGTYPE_p_svn_stream_t swig_types[83] #define SWIGTYPE_p_svn_string_t swig_types[84] #define SWIGTYPE_p_svn_stringbuf_t swig_types[85] #define SWIGTYPE_p_svn_txdelta_op_t swig_types[86] #define SWIGTYPE_p_svn_txdelta_stream_t swig_types[87] #define SWIGTYPE_p_svn_txdelta_window_t swig_types[88] #define SWIGTYPE_p_svn_version_checklist_t swig_types[89] #define SWIGTYPE_p_svn_version_t swig_types[90] #define SWIGTYPE_p_svn_wc_adm_access_t swig_types[91] #define SWIGTYPE_p_svn_wc_diff_callbacks2_t swig_types[92] #define SWIGTYPE_p_svn_wc_diff_callbacks_t swig_types[93] #define SWIGTYPE_p_svn_wc_entry_callbacks_t swig_types[94] #define SWIGTYPE_p_svn_wc_entry_t swig_types[95] #define SWIGTYPE_p_svn_wc_external_item_t swig_types[96] #define SWIGTYPE_p_svn_wc_merge_outcome_t swig_types[97] #define SWIGTYPE_p_svn_wc_notify_action_t swig_types[98] #define SWIGTYPE_p_svn_wc_notify_lock_state_t swig_types[99] #define SWIGTYPE_p_svn_wc_notify_state_t swig_types[100] #define SWIGTYPE_p_svn_wc_notify_t swig_types[101] #define SWIGTYPE_p_svn_wc_revision_status_t swig_types[102] #define SWIGTYPE_p_svn_wc_schedule_t swig_types[103] #define SWIGTYPE_p_svn_wc_status2_t swig_types[104] #define SWIGTYPE_p_svn_wc_status_t swig_types[105] #define SWIGTYPE_p_svn_wc_traversal_info_t swig_types[106] #define SWIGTYPE_p_void swig_types[107] #define SWIGTYPE_ptrdiff_t swig_types[108] #define SWIGTYPE_size_t swig_types[109] static swig_type_info *swig_types[110]; static swig_module_info swig_module = {swig_types, 110, 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) /* -------- TYPES TABLE (END) -------- */ /*----------------------------------------------- @(target):= _client.so ------------------------------------------------*/ #define SWIG_init init_client #define SWIG_name "_client" static PyObject * _global_svn_swig_py_pool = NULL; #define svn_argnum_obj0 1 #define svn_argnum_obj1 2 #define svn_argnum_obj2 3 #define svn_argnum_obj3 4 #define svn_argnum_obj4 5 #define svn_argnum_obj5 6 #define svn_argnum_obj6 7 #define svn_argnum_obj7 8 #define svn_argnum_obj8 9 #define svn_argnum_obj9 10 #define svn_argnum_obj10 11 #define svn_argnum_obj11 12 #define svn_argnum_obj12 13 #define svn_argnum_obj13 14 #define svn_argnum_obj14 15 #define svn_argnum_obj15 16 #define svn_argnum_obj16 17 #define svn_argnum_obj17 18 #define svn_argnum_obj18 19 #define svn_argnum_obj19 20 #include "svn_time.h" #include "svn_pools.h" #ifdef SWIGPYTHON #include "swigutil_py.h" #endif #ifdef SWIGPERL #include "swigutil_pl.h" #endif #ifdef SWIGRUBY #include #include #include "swigutil_rb.h" #endif #include "svn_client.h" SWIGINTERN int SWIG_AsVal_long(PyObject * obj, long* val) { if (PyInt_Check(obj)) { if (val) *val = PyInt_AS_LONG(obj); return 1; } if (PyLong_Check(obj)) { long v = PyLong_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return 1; } else { if (!val) PyErr_Clear(); return 0; } } if (val) { SWIG_type_error("long", obj); } return 0; } SWIGINTERNINLINE long SWIG_As_long(PyObject* obj) { long v; if (!SWIG_AsVal_long(obj, &v)) { /* this is needed to make valgrind/purify happier. */ memset((void*)&v, 0, sizeof(long)); } return v; } SWIGINTERNINLINE int SWIG_Check_long(PyObject* obj) { return SWIG_AsVal_long(obj, (long*)0); } SWIGINTERN PyObject* t_output_helper(PyObject* target, PyObject* o) { if (!target) { target = o; } else if (target == Py_None) { Py_DECREF(target); target = o; } else { if (!PyList_Check(target)) { PyObject *o2 = target; target = PyList_New(1); PyList_SetItem(target, 0, o2); } PyList_Append(target,o); Py_DECREF(o); } return target; } /*@/home/dave/svn/env/build/share/swig/1.3.25/python/pymacros.swg,66,SWIG_define@*/ #define SWIG_From_long PyInt_FromLong /*@@*/ /* returns SWIG_OLDOBJ if the input is a raw char*, SWIG_PYSTR if is a PyString */ SWIGINTERN int SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize) { static swig_type_info* pchar_info = 0; char* vptr = 0; if (!pchar_info) pchar_info = SWIG_TypeQuery("char *"); if (SWIG_ConvertPtr(obj, (void**)&vptr, pchar_info, 0) != -1) { if (cptr) *cptr = vptr; if (psize) *psize = vptr ? (strlen(vptr) + 1) : 0; return SWIG_OLDOBJ; } else { PyErr_Clear(); if (PyString_Check(obj)) { if (cptr) { *cptr = PyString_AS_STRING(obj); if (psize) { *psize = PyString_GET_SIZE(obj) + 1; } } return SWIG_PYSTR; } } if (cptr) { SWIG_type_error("char *", obj); } return 0; } SWIGINTERNINLINE int SWIG_AsCharPtr(PyObject *obj, char **val) { if (SWIG_AsCharPtrAndSize(obj, val, (size_t*)(0))) { return 1; } if (val) { PyErr_Clear(); SWIG_type_error("char *", obj); } return 0; } SWIGINTERN PyObject * SWIG_FromCharPtr(const char* cptr) { if (cptr) { size_t size = strlen(cptr); if (size > INT_MAX) { return SWIG_NewPointerObj((char*)(cptr), SWIG_TypeQuery("char *"), 0); } else { if (size != 0) { return PyString_FromStringAndSize(cptr, size); } else { return PyString_FromString(cptr); } } } Py_INCREF(Py_None); return Py_None; } SWIGINTERN int SWIG_AsVal_unsigned_SS_long(PyObject *obj, unsigned long *val) { if (PyInt_Check(obj)) { long v = PyInt_AS_LONG(obj); if (v >= 0) { if (val) *val = v; return 1; } } if (PyLong_Check(obj)) { unsigned long v = PyLong_AsUnsignedLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return 1; } else { if (!val) PyErr_Clear(); return 0; } } if (val) { SWIG_type_error("unsigned long", obj); } return 0; } SWIGINTERNINLINE unsigned long SWIG_As_unsigned_SS_long(PyObject* obj) { unsigned long v; if (!SWIG_AsVal_unsigned_SS_long(obj, &v)) { /* this is needed to make valgrind/purify happier. */ memset((void*)&v, 0, sizeof(unsigned long)); } return v; } SWIGINTERNINLINE int SWIG_Check_unsigned_SS_long(PyObject* obj) { return SWIG_AsVal_unsigned_SS_long(obj, (unsigned long*)0); } SWIGINTERNINLINE PyObject* SWIG_From_unsigned_SS_long(unsigned long value) { return (value > LONG_MAX) ? PyLong_FromUnsignedLong(value) : PyInt_FromLong((long)(value)); } #ifdef __cplusplus extern "C" { #endif static PyObject *_wrap_svn_client_version(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_version_t *result; if(!PyArg_ParseTuple(args,(char *)":svn_client_version")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_version_t *)svn_client_version(); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_version_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_get_simple_prompt_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; svn_auth_simple_prompt_func_t arg2 = (svn_auth_simple_prompt_func_t) 0 ; void *arg3 = (void *) 0 ; int arg4 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OO|O:svn_client_get_simple_prompt_provider",&obj0,&obj1,&obj2)) goto fail; { arg2 = svn_swig_py_auth_simple_prompt_func; arg3 = obj0; } { arg4 = (int)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_simple_prompt_provider(arg1,arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_username_prompt_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; svn_auth_username_prompt_func_t arg2 = (svn_auth_username_prompt_func_t) 0 ; void *arg3 = (void *) 0 ; int arg4 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OO|O:svn_client_get_username_prompt_provider",&obj0,&obj1,&obj2)) goto fail; { arg2 = svn_swig_py_auth_username_prompt_func; arg3 = obj0; } { arg4 = (int)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_username_prompt_provider(arg1,arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_simple_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"|O:svn_client_get_simple_provider",&obj0)) goto fail; if (obj0) { { if (obj0 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj0 != NULL && !PyObject_HasAttrString(obj0, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj0); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj0, SWIGTYPE_p_apr_pool_t, svn_argnum_obj0, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj0; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_simple_provider(arg1,arg2); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_username_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"|O:svn_client_get_username_provider",&obj0)) goto fail; if (obj0) { { if (obj0 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj0 != NULL && !PyObject_HasAttrString(obj0, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj0); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj0, SWIGTYPE_p_apr_pool_t, svn_argnum_obj0, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj0; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_username_provider(arg1,arg2); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_ssl_server_trust_file_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"|O:svn_client_get_ssl_server_trust_file_provider",&obj0)) goto fail; if (obj0) { { if (obj0 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj0 != NULL && !PyObject_HasAttrString(obj0, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj0); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj0, SWIGTYPE_p_apr_pool_t, svn_argnum_obj0, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj0; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_ssl_server_trust_file_provider(arg1,arg2); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_ssl_client_cert_file_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"|O:svn_client_get_ssl_client_cert_file_provider",&obj0)) goto fail; if (obj0) { { if (obj0 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj0 != NULL && !PyObject_HasAttrString(obj0, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj0); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj0, SWIGTYPE_p_apr_pool_t, svn_argnum_obj0, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj0; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_ssl_client_cert_file_provider(arg1,arg2); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_ssl_client_cert_pw_file_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"|O:svn_client_get_ssl_client_cert_pw_file_provider",&obj0)) goto fail; if (obj0) { { if (obj0 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj0 != NULL && !PyObject_HasAttrString(obj0, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj0); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj0, SWIGTYPE_p_apr_pool_t, svn_argnum_obj0, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj0; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_ssl_client_cert_pw_file_provider(arg1,arg2); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_ssl_server_trust_prompt_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; svn_auth_ssl_server_trust_prompt_func_t arg2 = (svn_auth_ssl_server_trust_prompt_func_t) 0 ; void *arg3 = (void *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"O|O:svn_client_get_ssl_server_trust_prompt_provider",&obj0,&obj1)) goto fail; { arg2 = svn_swig_py_auth_ssl_server_trust_prompt_func; arg3 = obj0; } if (obj1) { { if (obj1 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj1 != NULL && !PyObject_HasAttrString(obj1, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj1); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_pool_t, svn_argnum_obj1, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj1; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_ssl_server_trust_prompt_provider(arg1,arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_ssl_client_cert_prompt_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; svn_auth_ssl_client_cert_prompt_func_t arg2 = (svn_auth_ssl_client_cert_prompt_func_t) 0 ; void *arg3 = (void *) 0 ; int arg4 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OO|O:svn_client_get_ssl_client_cert_prompt_provider",&obj0,&obj1,&obj2)) goto fail; { arg2 = svn_swig_py_auth_ssl_client_cert_prompt_func; arg3 = obj0; } { arg4 = (int)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_ssl_client_cert_prompt_provider(arg1,arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_get_ssl_client_cert_pw_prompt_provider(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_auth_provider_object_t **arg1 = (svn_auth_provider_object_t **) 0 ; svn_auth_ssl_client_cert_pw_prompt_func_t arg2 = (svn_auth_ssl_client_cert_pw_prompt_func_t) 0 ; void *arg3 = (void *) 0 ; int arg4 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_auth_provider_object_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_auth_provider_object_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OO|O:svn_client_get_ssl_client_cert_pw_prompt_provider",&obj0,&obj1,&obj2)) goto fail; { arg2 = svn_swig_py_auth_ssl_client_cert_pw_prompt_func; arg3 = obj0; } { arg4 = (int)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); svn_client_get_ssl_client_cert_pw_prompt_provider(arg1,arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_auth_provider_object_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_proplist_item_dup(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_proplist_item_t *arg1 = (svn_client_proplist_item_t *) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; svn_client_proplist_item_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"O|O:svn_client_proplist_item_dup",&obj0,&obj1)) goto fail; { arg1 = (svn_client_proplist_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_proplist_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj1) { { if (obj1 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj1 != NULL && !PyObject_HasAttrString(obj1, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj1); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_pool_t, svn_argnum_obj1, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj1; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_client_proplist_item_t *)svn_client_proplist_item_dup((struct svn_client_proplist_item_t const *)arg1,arg2); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_proplist_item_t, _global_svn_swig_py_pool); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_commit_info_t_revision_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_info_t_revision_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->revision = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_info_t_revision_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_info_t_revision_get",&obj0)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->revision); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_info_t_date_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_commit_info_t_date_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->date) free((char *)arg1->date); copied = malloc(len); memcpy(copied, arg2, len); arg1->date = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_info_t_date_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_info_t_date_get",&obj0)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->date); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_info_t_author_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_commit_info_t_author_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->author) free((char *)arg1->author); copied = malloc(len); memcpy(copied, arg2, len); arg1->author = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_info_t_author_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_info_t_author_get",&obj0)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->author); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_new_svn_client_commit_info_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *result; if(!PyArg_ParseTuple(args,(char *)":new_svn_client_commit_info_t")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_client_commit_info_t *)(svn_client_commit_info_t *) calloc(1, sizeof(svn_client_commit_info_t)); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_delete_svn_client_commit_info_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t *arg1 = (svn_client_commit_info_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:delete_svn_client_commit_info_t",&obj0)) goto fail; { arg1 = (svn_client_commit_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { svn_swig_py_release_py_lock(); free((char *) arg1); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject * svn_client_commit_info_t_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; SWIG_TypeClientData(SWIGTYPE_p_svn_client_commit_info_t, obj); Py_INCREF(obj); return Py_BuildValue((char *)""); } static PyObject *_wrap_svn_client_commit_item2_t_path_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_commit_item2_t_path_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->path) free((char *)arg1->path); copied = malloc(len); memcpy(copied, arg2, len); arg1->path = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_path_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_path_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->path); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_kind_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; svn_node_kind_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item2_t_kind_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_node_kind_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->kind = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_kind_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; svn_node_kind_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_kind_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_node_kind_t) ((arg1)->kind); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_url_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_commit_item2_t_url_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->url) free((char *)arg1->url); copied = malloc(len); memcpy(copied, arg2, len); arg1->url = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_url_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_url_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->url); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_revision_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item2_t_revision_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->revision = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_revision_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_revision_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->revision); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_copyfrom_url_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Oz:svn_client_commit_item2_t_copyfrom_url_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->copyfrom_url) free((char *)arg1->copyfrom_url); copied = malloc(len); memcpy(copied, arg2, len); arg1->copyfrom_url = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_copyfrom_url_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_copyfrom_url_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->copyfrom_url); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_copyfrom_rev_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item2_t_copyfrom_rev_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->copyfrom_rev = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_copyfrom_rev_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_copyfrom_rev_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->copyfrom_rev); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_state_flags_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; apr_byte_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item2_t_state_flags_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (apr_byte_t)SWIG_As_unsigned_SS_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->state_flags = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_state_flags_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; apr_byte_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_state_flags_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = ((arg1)->state_flags); { resultobj = SWIG_From_unsigned_SS_long((unsigned long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_wcprop_changes_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item2_t_wcprop_changes_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (apr_array_header_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_array_header_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->wcprop_changes = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item2_t_wcprop_changes_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; apr_array_header_t *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item2_t_wcprop_changes_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (apr_array_header_t *) ((arg1)->wcprop_changes); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_apr_array_header_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_new_svn_client_commit_item2_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *result; if(!PyArg_ParseTuple(args,(char *)":new_svn_client_commit_item2_t")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_client_commit_item2_t *)(svn_client_commit_item2_t *) calloc(1, sizeof(svn_client_commit_item2_t)); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_commit_item2_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_delete_svn_client_commit_item2_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:delete_svn_client_commit_item2_t",&obj0)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { svn_swig_py_release_py_lock(); free((char *) arg1); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject * svn_client_commit_item2_t_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; SWIG_TypeClientData(SWIGTYPE_p_svn_client_commit_item2_t, obj); Py_INCREF(obj); return Py_BuildValue((char *)""); } static PyObject *_wrap_svn_client_commit_item2_dup(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item2_t *arg1 = (svn_client_commit_item2_t *) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; svn_client_commit_item2_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"O|O:svn_client_commit_item2_dup",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item2_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item2_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj1) { { if (obj1 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj1 != NULL && !PyObject_HasAttrString(obj1, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj1); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_pool_t, svn_argnum_obj1, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj1; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_client_commit_item2_t *)svn_client_commit_item2_dup((struct svn_client_commit_item2_t const *)arg1,arg2); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_commit_item2_t, _global_svn_swig_py_pool); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_commit_item_t_path_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_commit_item_t_path_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->path) free((char *)arg1->path); copied = malloc(len); memcpy(copied, arg2, len); arg1->path = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_path_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_path_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->path); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_kind_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; svn_node_kind_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item_t_kind_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_node_kind_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->kind = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_kind_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; svn_node_kind_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_kind_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_node_kind_t) ((arg1)->kind); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_url_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_commit_item_t_url_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->url) free((char *)arg1->url); copied = malloc(len); memcpy(copied, arg2, len); arg1->url = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_url_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_url_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->url); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_revision_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item_t_revision_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->revision = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_revision_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_revision_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->revision); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_copyfrom_url_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Oz:svn_client_commit_item_t_copyfrom_url_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->copyfrom_url) free((char *)arg1->copyfrom_url); copied = malloc(len); memcpy(copied, arg2, len); arg1->copyfrom_url = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_copyfrom_url_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_copyfrom_url_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->copyfrom_url); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_state_flags_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; apr_byte_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item_t_state_flags_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (apr_byte_t)SWIG_As_unsigned_SS_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->state_flags = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_state_flags_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; apr_byte_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_state_flags_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = ((arg1)->state_flags); { resultobj = SWIG_From_unsigned_SS_long((unsigned long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_wcprop_changes_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_commit_item_t_wcprop_changes_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (apr_array_header_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_array_header_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->wcprop_changes = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_commit_item_t_wcprop_changes_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; apr_array_header_t *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_commit_item_t_wcprop_changes_get",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (apr_array_header_t *) ((arg1)->wcprop_changes); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_apr_array_header_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_new_svn_client_commit_item_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *result; if(!PyArg_ParseTuple(args,(char *)":new_svn_client_commit_item_t")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_client_commit_item_t *)(svn_client_commit_item_t *) calloc(1, sizeof(svn_client_commit_item_t)); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_commit_item_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_delete_svn_client_commit_item_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_item_t *arg1 = (svn_client_commit_item_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:delete_svn_client_commit_item_t",&obj0)) goto fail; { arg1 = (svn_client_commit_item_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_commit_item_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { svn_swig_py_release_py_lock(); free((char *) arg1); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject * svn_client_commit_item_t_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; SWIG_TypeClientData(SWIGTYPE_p_svn_client_commit_item_t, obj); Py_INCREF(obj); return Py_BuildValue((char *)""); } static PyObject *_wrap_svn_client_diff_summarize_t_path_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_client_diff_summarize_t_path_set",&obj0,&arg2)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->path) free((char *)arg1->path); copied = malloc(len); memcpy(copied, arg2, len); arg1->path = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_path_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_diff_summarize_t_path_get",&obj0)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->path); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_summarize_kind_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; svn_client_diff_summarize_kind_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_diff_summarize_t_summarize_kind_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_client_diff_summarize_kind_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->summarize_kind = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_summarize_kind_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; svn_client_diff_summarize_kind_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_diff_summarize_t_summarize_kind_get",&obj0)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_client_diff_summarize_kind_t) ((arg1)->summarize_kind); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_prop_changed_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; svn_boolean_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_diff_summarize_t_prop_changed_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->prop_changed = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_prop_changed_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; svn_boolean_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_diff_summarize_t_prop_changed_get",&obj0)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_boolean_t) ((arg1)->prop_changed); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_node_kind_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; svn_node_kind_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_diff_summarize_t_node_kind_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_node_kind_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->node_kind = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_diff_summarize_t_node_kind_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; svn_node_kind_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_diff_summarize_t_node_kind_get",&obj0)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_node_kind_t) ((arg1)->node_kind); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_new_svn_client_diff_summarize_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *result; if(!PyArg_ParseTuple(args,(char *)":new_svn_client_diff_summarize_t")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_client_diff_summarize_t *)(svn_client_diff_summarize_t *) calloc(1, sizeof(svn_client_diff_summarize_t)); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_diff_summarize_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_delete_svn_client_diff_summarize_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:delete_svn_client_diff_summarize_t",&obj0)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { svn_swig_py_release_py_lock(); free((char *) arg1); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject * svn_client_diff_summarize_t_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; SWIG_TypeClientData(SWIGTYPE_p_svn_client_diff_summarize_t, obj); Py_INCREF(obj); return Py_BuildValue((char *)""); } static PyObject *_wrap_svn_client_diff_summarize_dup(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_diff_summarize_t *arg1 = (svn_client_diff_summarize_t *) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; svn_client_diff_summarize_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"O|O:svn_client_diff_summarize_dup",&obj0,&obj1)) goto fail; { arg1 = (svn_client_diff_summarize_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_diff_summarize_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj1) { { if (obj1 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj1 != NULL && !PyObject_HasAttrString(obj1, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj1); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_pool_t, svn_argnum_obj1, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj1; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_client_diff_summarize_t *)svn_client_diff_summarize_dup((struct svn_client_diff_summarize_t const *)arg1,arg2); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_diff_summarize_t, _global_svn_swig_py_pool); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_ctx_t_auth_baton_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_auth_baton_t *arg2 = (svn_auth_baton_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_auth_baton_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_auth_baton_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_auth_baton_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->auth_baton = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_auth_baton_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_auth_baton_t *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_auth_baton_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_auth_baton_t *) ((arg1)->auth_baton); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_auth_baton_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_func_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_wc_notify_func_t arg2 = (svn_wc_notify_func_t) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_notify_func_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_wc_notify_func_t)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->notify_func = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_func_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_wc_notify_func_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_notify_func_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_wc_notify_func_t) ((arg1)->notify_func); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_baton_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *arg2 = (void *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_notify_baton_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (void *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->notify_baton = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_baton_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_notify_baton_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (void *) ((arg1)->notify_baton); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_func_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_client_get_commit_log_t arg2 = (svn_client_get_commit_log_t) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_log_msg_func_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_client_get_commit_log_t)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->log_msg_func = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_func_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_client_get_commit_log_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_log_msg_func_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_client_get_commit_log_t) ((arg1)->log_msg_func); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_baton_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *arg2 = (void *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_log_msg_baton_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (void *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->log_msg_baton = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_baton_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_log_msg_baton_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (void *) ((arg1)->log_msg_baton); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_config_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; apr_hash_t *arg2 = (apr_hash_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_config_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (apr_hash_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_hash_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->config = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_config_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; apr_hash_t *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_config_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (apr_hash_t *) ((arg1)->config); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_apr_hash_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_cancel_func_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_cancel_func_t arg2 = (svn_cancel_func_t) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_cancel_func_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_cancel_func_t)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_f_p_void__p_svn_error_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->cancel_func = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_cancel_func_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_cancel_func_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_cancel_func_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_cancel_func_t) ((arg1)->cancel_func); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_f_p_void__p_svn_error_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_cancel_baton_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *arg2 = (void *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_cancel_baton_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (void *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->cancel_baton = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_cancel_baton_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_cancel_baton_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (void *) ((arg1)->cancel_baton); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_func2_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_wc_notify_func2_t arg2 = (svn_wc_notify_func2_t) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_notify_func2_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_wc_notify_func2_t)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->notify_func2 = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_func2_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_wc_notify_func2_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_notify_func2_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_wc_notify_func2_t) ((arg1)->notify_func2); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_baton2_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *arg2 = (void *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_notify_baton2_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (void *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->notify_baton2 = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_notify_baton2_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_notify_baton2_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (void *) ((arg1)->notify_baton2); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_func2_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_client_get_commit_log2_t arg2 = (svn_client_get_commit_log2_t) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_log_msg_func2_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_client_get_commit_log2_t)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->log_msg_func2 = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_func2_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_client_get_commit_log2_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_log_msg_func2_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_client_get_commit_log2_t) ((arg1)->log_msg_func2); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_baton2_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *arg2 = (void *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_log_msg_baton2_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (void *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->log_msg_baton2 = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_log_msg_baton2_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_log_msg_baton2_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (void *) ((arg1)->log_msg_baton2); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_progress_func_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_ra_progress_notify_func_t arg2 = (svn_ra_progress_notify_func_t) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_progress_func_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_ra_progress_notify_func_t)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->progress_func = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_progress_func_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; svn_ra_progress_notify_func_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_progress_func_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_ra_progress_notify_func_t) ((arg1)->progress_func); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_progress_baton_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *arg2 = (void *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_client_ctx_t_progress_baton_set",&obj0,&obj1)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (void *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_void, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->progress_baton = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_client_ctx_t_progress_baton_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; void *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_client_ctx_t_progress_baton_get",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (void *) ((arg1)->progress_baton); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_void, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_new_svn_client_ctx_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *result; if(!PyArg_ParseTuple(args,(char *)":new_svn_client_ctx_t")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_client_ctx_t *)(svn_client_ctx_t *) calloc(1, sizeof(svn_client_ctx_t)); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_client_ctx_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_delete_svn_client_ctx_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t *arg1 = (svn_client_ctx_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:delete_svn_client_ctx_t",&obj0)) goto fail; { arg1 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { svn_swig_py_release_py_lock(); free((char *) arg1); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject * svn_client_ctx_t_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; SWIG_TypeClientData(SWIGTYPE_p_svn_client_ctx_t, obj); Py_INCREF(obj); return Py_BuildValue((char *)""); } static PyObject *_wrap_svn_client_create_context(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_ctx_t **arg1 = (svn_client_ctx_t **) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_ctx_t *temp1 ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_ctx_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"|O:svn_client_create_context",&obj0)) goto fail; if (obj0) { { if (obj0 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj0 != NULL && !PyObject_HasAttrString(obj0, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj0); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj0, SWIGTYPE_p_apr_pool_t, svn_argnum_obj0, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj0; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_create_context(arg1,arg2); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_ctx_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_checkout2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_client_ctx_t *arg8 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg9 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg9 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOOOOO|O:svn_client_checkout2",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg8 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj6, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj6, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj7) { { if (obj7 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj7 != NULL && !PyObject_HasAttrString(obj7, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj7); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj7, SWIGTYPE_p_apr_pool_t, svn_argnum_obj7, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj7; Py_XINCREF(_global_svn_swig_py_pool); arg9 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_checkout2(arg1,(char const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_checkout(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOOO|O:svn_client_checkout",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_checkout(arg1,(char const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_update2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t **arg1 = (apr_array_header_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg4 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OOOOOO|O:svn_client_update2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail; { arg1 = (apr_array_header_t **)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_p_apr_array_header_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj1, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_update2(arg1,(apr_array_header_t const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_update(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"sOOO|O:svn_client_update",&arg2,&obj1,&obj2,&obj3,&obj4)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_update(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_switch(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOOO|O:svn_client_switch",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_switch(arg1,(char const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_add3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_boolean_t arg2 ; svn_boolean_t arg3 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOO|O:svn_client_add3",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg3 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_add3((char const *)arg1,arg2,arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_add2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_boolean_t arg2 ; svn_boolean_t arg3 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOO|O:svn_client_add2",&arg1,&obj1,&obj2,&obj3,&obj4)) goto fail; { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg3 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_add2((char const *)arg1,arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_add(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_boolean_t arg2 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOO|O:svn_client_add",&arg1,&obj1,&obj2,&obj3)) goto fail; { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_add((char const *)arg1,arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_mkdir2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OO|O:svn_client_mkdir2",&obj0,&obj1,&obj2)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_mkdir2(arg1,(apr_array_header_t const *)arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_mkdir(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OO|O:svn_client_mkdir",&obj0,&obj1,&obj2)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_mkdir(arg1,(apr_array_header_t const *)arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_delete2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_boolean_t arg3 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OOO|O:svn_client_delete2",&obj0,&obj1,&obj2,&obj3)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_delete2(arg1,(apr_array_header_t const *)arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_delete(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_boolean_t arg3 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OOO|O:svn_client_delete",&obj0,&obj1,&obj2,&obj3)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_delete(arg1,(apr_array_header_t const *)arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_import2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"ssOOO|O:svn_client_import2",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_import2(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_import(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"ssOO|O:svn_client_import",&arg2,&arg3,&obj2,&obj3,&obj4)) goto fail; { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_import(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_commit3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_boolean_t arg3 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OOOO|O:svn_client_commit3",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_commit3(arg1,(apr_array_header_t const *)arg2,arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_commit2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_boolean_t arg3 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OOOO|O:svn_client_commit2",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_commit2(arg1,(apr_array_header_t const *)arg2,arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_commit(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; apr_array_header_t *arg2 = (apr_array_header_t *) 0 ; svn_boolean_t arg3 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"OOO|O:svn_client_commit",&obj0,&obj1,&obj2,&obj3)) goto fail; { arg2 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg2 == NULL) SWIG_fail; } { arg3 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_commit(arg1,(apr_array_header_t const *)arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_status2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_wc_status_func2_t arg4 = (svn_wc_status_func2_t) 0 ; void *arg5 = (void *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; svn_boolean_t arg10 ; svn_client_ctx_t *arg11 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg12 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg12 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"sOOOOOOOOO|O:svn_client_status2",&arg2,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_wc_status_func2_t)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (void *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_void, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg10 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg11 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj9, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj9, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj10) { { if (obj10 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj10 != NULL && !PyObject_HasAttrString(obj10, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj10); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj10, SWIGTYPE_p_apr_pool_t, svn_argnum_obj10, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj10; Py_XINCREF(_global_svn_swig_py_pool); arg12 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_status2(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_status(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_wc_status_func_t arg4 = (svn_wc_status_func_t) 0 ; void *arg5 = (void *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; svn_client_ctx_t *arg10 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg11 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg11 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"sOOOOOOO|O:svn_client_status",&arg2,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = svn_swig_py_status_func; arg5 = obj2; /* our function is the baton. */ } { arg6 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg10 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj7, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj7, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj8) { { if (obj8 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj8 != NULL && !PyObject_HasAttrString(obj8, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj8); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj8, SWIGTYPE_p_apr_pool_t, svn_argnum_obj8, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj8; Py_XINCREF(_global_svn_swig_py_pool); arg11 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_status(arg1,(char const *)arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_log3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; int arg5 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_log_message_receiver_t arg8 = (svn_log_message_receiver_t) 0 ; void *arg9 = (void *) 0 ; svn_client_ctx_t *arg10 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg11 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg11 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OOOOOOOOO|O:svn_client_log3",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (int)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = svn_swig_py_log_receiver; arg9 = (void *)obj7; } { arg10 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj8, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj8, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj9) { { if (obj9 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj9 != NULL && !PyObject_HasAttrString(obj9, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj9); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_pool_t, svn_argnum_obj9, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj9; Py_XINCREF(_global_svn_swig_py_pool); arg11 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_log3((apr_array_header_t const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_log2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; int arg4 ; svn_boolean_t arg5 ; svn_boolean_t arg6 ; svn_log_message_receiver_t arg7 = (svn_log_message_receiver_t) 0 ; void *arg8 = (void *) 0 ; svn_client_ctx_t *arg9 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg10 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg10 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OOOOOOOO|O:svn_client_log2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (int)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = svn_swig_py_log_receiver; arg8 = (void *)obj6; } { arg9 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj7, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj7, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj8) { { if (obj8 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj8 != NULL && !PyObject_HasAttrString(obj8, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj8); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj8, SWIGTYPE_p_apr_pool_t, svn_argnum_obj8, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj8; Py_XINCREF(_global_svn_swig_py_pool); arg10 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_log2((apr_array_header_t const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_log(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg4 ; svn_boolean_t arg5 ; svn_log_message_receiver_t arg6 = (svn_log_message_receiver_t) 0 ; void *arg7 = (void *) 0 ; svn_client_ctx_t *arg8 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg9 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg9 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OOOOOOO|O:svn_client_log",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = svn_swig_py_log_receiver; arg7 = (void *)obj5; } { arg8 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj6, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj6, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj7) { { if (obj7 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj7 != NULL && !PyObject_HasAttrString(obj7, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj7); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj7, SWIGTYPE_p_apr_pool_t, svn_argnum_obj7, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj7; Py_XINCREF(_global_svn_swig_py_pool); arg9 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_log((apr_array_header_t const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_blame3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_diff_file_options_t *arg5 = (svn_diff_file_options_t *) 0 ; svn_boolean_t arg6 ; svn_client_blame_receiver_t arg7 = (svn_client_blame_receiver_t) 0 ; void *arg8 = (void *) 0 ; svn_client_ctx_t *arg9 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg10 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg10 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOOOOO|O:svn_client_blame3",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_diff_file_options_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_diff_file_options_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = svn_swig_py_client_blame_receiver_func; arg8 = (void *)obj6; } { arg9 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj7, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj7, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj8) { { if (obj8 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj8 != NULL && !PyObject_HasAttrString(obj8, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj8); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj8, SWIGTYPE_p_apr_pool_t, svn_argnum_obj8, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj8; Py_XINCREF(_global_svn_swig_py_pool); arg10 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_blame3((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_diff_file_options_t const *)arg5,arg6,arg7,arg8,arg9,arg10); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_blame2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_client_blame_receiver_t arg5 = (svn_client_blame_receiver_t) 0 ; void *arg6 = (void *) 0 ; svn_client_ctx_t *arg7 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg8 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg8 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOOO|O:svn_client_blame2",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = svn_swig_py_client_blame_receiver_func; arg6 = (void *)obj4; } { arg7 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg8 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_blame2((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7,arg8); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_blame(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_client_blame_receiver_t arg4 = (svn_client_blame_receiver_t) 0 ; void *arg5 = (void *) 0 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOO|O:svn_client_blame",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = svn_swig_py_client_blame_receiver_func; arg5 = (void *)obj3; } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_blame((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; char *arg10 = (char *) 0 ; apr_file_t *arg11 = (apr_file_t *) 0 ; apr_file_t *arg12 = (apr_file_t *) 0 ; svn_client_ctx_t *arg13 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg14 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; PyObject * obj13 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg14 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOsOOOOOsOOO|O:svn_client_diff3",&obj0,&arg2,&obj2,&arg4,&obj4,&obj5,&obj6,&obj7,&obj8,&arg10,&obj10,&obj11,&obj12,&obj13)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg11 = svn_swig_py_make_file(obj10, _global_pool); if (!arg11) SWIG_fail; } { arg12 = svn_swig_py_make_file(obj11, _global_pool); if (!arg12) SWIG_fail; } { arg13 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj12, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj12, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj13) { { if (obj13 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj13 != NULL && !PyObject_HasAttrString(obj13, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj13); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj13, SWIGTYPE_p_apr_pool_t, svn_argnum_obj13, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj13; Py_XINCREF(_global_svn_swig_py_pool); arg14 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff3((apr_array_header_t const *)arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9,(char const *)arg10,arg11,arg12,arg13,arg14); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; apr_file_t *arg10 = (apr_file_t *) 0 ; apr_file_t *arg11 = (apr_file_t *) 0 ; svn_client_ctx_t *arg12 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg13 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg13 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOsOOOOOOOO|O:svn_client_diff2",&obj0,&arg2,&obj2,&arg4,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg10 = svn_swig_py_make_file(obj9, _global_pool); if (!arg10) SWIG_fail; } { arg11 = svn_swig_py_make_file(obj10, _global_pool); if (!arg11) SWIG_fail; } { arg12 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj11, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj11, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj12) { { if (obj12 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj12 != NULL && !PyObject_HasAttrString(obj12, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj12); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj12, SWIGTYPE_p_apr_pool_t, svn_argnum_obj12, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj12; Py_XINCREF(_global_svn_swig_py_pool); arg13 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff2((apr_array_header_t const *)arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; apr_file_t *arg9 = (apr_file_t *) 0 ; apr_file_t *arg10 = (apr_file_t *) 0 ; svn_client_ctx_t *arg11 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg12 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg12 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOsOOOOOOO|O:svn_client_diff",&obj0,&arg2,&obj2,&arg4,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = svn_swig_py_make_file(obj8, _global_pool); if (!arg9) SWIG_fail; } { arg10 = svn_swig_py_make_file(obj9, _global_pool); if (!arg10) SWIG_fail; } { arg11 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj10, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj10, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj11) { { if (obj11 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj11 != NULL && !PyObject_HasAttrString(obj11, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj11); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj11, SWIGTYPE_p_apr_pool_t, svn_argnum_obj11, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj11; Py_XINCREF(_global_svn_swig_py_pool); arg12 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff((apr_array_header_t const *)arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff_peg3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; char *arg10 = (char *) 0 ; apr_file_t *arg11 = (apr_file_t *) 0 ; apr_file_t *arg12 = (apr_file_t *) 0 ; svn_client_ctx_t *arg13 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg14 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; PyObject * obj13 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg14 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOOOOOOOsOOO|O:svn_client_diff_peg3",&obj0,&arg2,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&arg10,&obj10,&obj11,&obj12,&obj13)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg11 = svn_swig_py_make_file(obj10, _global_pool); if (!arg11) SWIG_fail; } { arg12 = svn_swig_py_make_file(obj11, _global_pool); if (!arg12) SWIG_fail; } { arg13 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj12, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj12, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj13) { { if (obj13 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj13 != NULL && !PyObject_HasAttrString(obj13, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj13); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj13, SWIGTYPE_p_apr_pool_t, svn_argnum_obj13, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj13; Py_XINCREF(_global_svn_swig_py_pool); arg14 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff_peg3((apr_array_header_t const *)arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9,(char const *)arg10,arg11,arg12,arg13,arg14); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff_peg2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; apr_file_t *arg10 = (apr_file_t *) 0 ; apr_file_t *arg11 = (apr_file_t *) 0 ; svn_client_ctx_t *arg12 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg13 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg13 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOOOOOOOOOO|O:svn_client_diff_peg2",&obj0,&arg2,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg10 = svn_swig_py_make_file(obj9, _global_pool); if (!arg10) SWIG_fail; } { arg11 = svn_swig_py_make_file(obj10, _global_pool); if (!arg11) SWIG_fail; } { arg12 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj11, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj11, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj12) { { if (obj12 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj12 != NULL && !PyObject_HasAttrString(obj12, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj12); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj12, SWIGTYPE_p_apr_pool_t, svn_argnum_obj12, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj12; Py_XINCREF(_global_svn_swig_py_pool); arg13 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff_peg2((apr_array_header_t const *)arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff_peg(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; apr_file_t *arg9 = (apr_file_t *) 0 ; apr_file_t *arg10 = (apr_file_t *) 0 ; svn_client_ctx_t *arg11 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg12 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg12 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOOOOOOOOO|O:svn_client_diff_peg",&obj0,&arg2,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = svn_swig_py_make_file(obj8, _global_pool); if (!arg9) SWIG_fail; } { arg10 = svn_swig_py_make_file(obj9, _global_pool); if (!arg10) SWIG_fail; } { arg11 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj10, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj10, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj11) { { if (obj11 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj11 != NULL && !PyObject_HasAttrString(obj11, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj11); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj11, SWIGTYPE_p_apr_pool_t, svn_argnum_obj11, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj11; Py_XINCREF(_global_svn_swig_py_pool); arg12 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff_peg((apr_array_header_t const *)arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff_summarize(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_boolean_t arg6 ; svn_client_diff_summarize_func_t arg7 = (svn_client_diff_summarize_func_t) 0 ; void *arg8 = (void *) 0 ; svn_client_ctx_t *arg9 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg10 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg10 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOsOOOOOO|O:svn_client_diff_summarize",&arg1,&obj1,&arg3,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_client_diff_summarize_func_t)svn_swig_MustGetPtr(obj6, SWIGTYPE_p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t, svn_argnum_obj6, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg8 = (void *)svn_swig_MustGetPtr(obj7, SWIGTYPE_p_void, svn_argnum_obj7, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg9 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj8, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj8, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj9) { { if (obj9 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj9 != NULL && !PyObject_HasAttrString(obj9, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj9); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_pool_t, svn_argnum_obj9, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj9; Py_XINCREF(_global_svn_swig_py_pool); arg10 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff_summarize((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7,arg8,arg9,arg10); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_diff_summarize_peg(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_boolean_t arg6 ; svn_client_diff_summarize_func_t arg7 = (svn_client_diff_summarize_func_t) 0 ; void *arg8 = (void *) 0 ; svn_client_ctx_t *arg9 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg10 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg10 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOOOOOO|O:svn_client_diff_summarize_peg",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_client_diff_summarize_func_t)svn_swig_MustGetPtr(obj6, SWIGTYPE_p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t, svn_argnum_obj6, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg8 = (void *)svn_swig_MustGetPtr(obj7, SWIGTYPE_p_void, svn_argnum_obj7, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg9 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj8, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj8, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj9) { { if (obj9 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj9 != NULL && !PyObject_HasAttrString(obj9, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj9); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_pool_t, svn_argnum_obj9, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj9; Py_XINCREF(_global_svn_swig_py_pool); arg10 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_diff_summarize_peg((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7,arg8,arg9,arg10); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_merge2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; char *arg5 = (char *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; apr_array_header_t *arg10 = (apr_array_header_t *) 0 ; svn_client_ctx_t *arg11 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg12 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg12 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOsOsOOOOOO|O:svn_client_merge2",&arg1,&obj1,&arg3,&obj3,&arg5,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg10 = (apr_array_header_t *)svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_array_header_t, svn_argnum_obj9, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg11 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj10, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj10, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj11) { { if (obj11 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj11 != NULL && !PyObject_HasAttrString(obj11, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj11); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj11, SWIGTYPE_p_apr_pool_t, svn_argnum_obj11, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj11; Py_XINCREF(_global_svn_swig_py_pool); arg12 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_merge2((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,(char const *)arg5,arg6,arg7,arg8,arg9,(apr_array_header_t const *)arg10,arg11,arg12); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_merge(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; char *arg5 = (char *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; svn_client_ctx_t *arg10 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg11 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg11 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOsOsOOOOO|O:svn_client_merge",&arg1,&obj1,&arg3,&obj3,&arg5,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg10 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj9, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj9, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj10) { { if (obj10 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj10 != NULL && !PyObject_HasAttrString(obj10, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj10); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj10, SWIGTYPE_p_apr_pool_t, svn_argnum_obj10, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj10; Py_XINCREF(_global_svn_swig_py_pool); arg11 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_merge((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,(char const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_merge_peg2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; char *arg5 = (char *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; apr_array_header_t *arg10 = (apr_array_header_t *) 0 ; svn_client_ctx_t *arg11 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg12 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg12 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOsOOOOOO|O:svn_client_merge_peg2",&arg1,&obj1,&obj2,&obj3,&arg5,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg10 = (apr_array_header_t *)svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_array_header_t, svn_argnum_obj9, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg11 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj10, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj10, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj11) { { if (obj11 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj11 != NULL && !PyObject_HasAttrString(obj11, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj11); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj11, SWIGTYPE_p_apr_pool_t, svn_argnum_obj11, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj11; Py_XINCREF(_global_svn_swig_py_pool); arg12 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_merge_peg2((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,(char const *)arg5,arg6,arg7,arg8,arg9,(apr_array_header_t const *)arg10,arg11,arg12); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_merge_peg(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; char *arg5 = (char *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; svn_boolean_t arg9 ; svn_client_ctx_t *arg10 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg11 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; PyObject * obj10 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg11 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOsOOOOO|O:svn_client_merge_peg",&arg1,&obj1,&obj2,&obj3,&arg5,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj7); if (SWIG_arg_fail(svn_argnum_obj7)) { SWIG_fail; } } { arg9 = (svn_boolean_t)SWIG_As_long(obj8); if (SWIG_arg_fail(svn_argnum_obj8)) { SWIG_fail; } } { arg10 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj9, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj9, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj10) { { if (obj10 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj10 != NULL && !PyObject_HasAttrString(obj10, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj10); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj10, SWIGTYPE_p_apr_pool_t, svn_argnum_obj10, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj10; Py_XINCREF(_global_svn_swig_py_pool); arg11 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_merge_peg((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,(char const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_cleanup(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_client_ctx_t *arg2 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg3 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg3 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sO|O:svn_client_cleanup",&arg1,&obj1,&obj2)) goto fail; { arg2 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg3 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_cleanup((char const *)arg1,arg2,arg3); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_relocate(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sssOO|O:svn_client_relocate",&arg1,&arg2,&arg3,&obj3,&obj4,&obj5)) goto fail; { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_relocate((char const *)arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_revert(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; svn_boolean_t arg2 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OOO|O:svn_client_revert",&obj0,&obj1,&obj2,&obj3)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_revert((apr_array_header_t const *)arg1,arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_resolved(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_boolean_t arg2 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOO|O:svn_client_resolved",&arg1,&obj1,&obj2,&obj3)) goto fail; { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_resolved((char const *)arg1,arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_copy3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"sOsO|O:svn_client_copy3",&arg2,&obj1,&arg4,&obj3,&obj4)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_copy3(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_copy2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"sOsO|O:svn_client_copy2",&arg2,&obj1,&arg4,&obj3,&obj4)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_copy2(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_copy(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"sOsO|O:svn_client_copy",&arg2,&obj1,&arg4,&obj3,&obj4)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_copy(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_move4(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"ssOO|O:svn_client_move4",&arg2,&arg3,&obj2,&obj3,&obj4)) goto fail; { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_move4(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_move3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_commit_info_t **arg1 = (svn_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_commit_info_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"ssOO|O:svn_client_move3",&arg2,&arg3,&obj2,&obj3,&obj4)) goto fail; { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_move3(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_move2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"ssOO|O:svn_client_move2",&arg2,&arg3,&obj2,&obj3,&obj4)) goto fail; { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_move2(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_move(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_client_commit_info_t **arg1 = (svn_client_commit_info_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; char *arg4 = (char *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_client_commit_info_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_client_commit_info_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"sOsOO|O:svn_client_move",&arg2,&obj1,&arg4,&obj3,&obj4,&obj5)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_move(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(char const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_client_commit_info_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_propset2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_string_t *arg2 = (svn_string_t *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_string_t value2 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOsOOO|O:svn_client_propset2",&arg1,&obj1,&arg3,&obj3,&obj4,&obj5,&obj6)) goto fail; { if (obj1 == Py_None) arg2 = NULL; else { if (!PyString_Check(obj1)) { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } value2.data = PyString_AS_STRING(obj1); value2.len = PyString_GET_SIZE(obj1); arg2 = &value2; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_propset2((char const *)arg1,(struct svn_string_t const *)arg2,(char const *)arg3,arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_propset(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_string_t *arg2 = (svn_string_t *) 0 ; char *arg3 = (char *) 0 ; svn_boolean_t arg4 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_string_t value2 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOsO|O:svn_client_propset",&arg1,&obj1,&arg3,&obj3,&obj4)) goto fail; { if (obj1 == Py_None) arg2 = NULL; else { if (!PyString_Check(obj1)) { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } value2.data = PyString_AS_STRING(obj1); value2.len = PyString_GET_SIZE(obj1); arg2 = &value2; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_propset((char const *)arg1,(struct svn_string_t const *)arg2,(char const *)arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_revprop_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_string_t *arg2 = (svn_string_t *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_revnum_t *arg5 = (svn_revnum_t *) 0 ; svn_boolean_t arg6 ; svn_client_ctx_t *arg7 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg8 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_string_t value2 ; svn_revnum_t temp5 ; int res5 = 0 ; PyObject * obj1 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg8 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg5 = &temp5; res5 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"sOsOOO|O:svn_client_revprop_set",&arg1,&obj1,&arg3,&obj3,&obj4,&obj5,&obj6)) goto fail; { if (obj1 == Py_None) arg2 = NULL; else { if (!PyString_Check(obj1)) { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } value2.data = PyString_AS_STRING(obj1); value2.len = PyString_GET_SIZE(obj1); arg2 = &value2; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg8 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_revprop_set((char const *)arg1,(struct svn_string_t const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7,arg8); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res5 == SWIG_NEWOBJ) ? SWIG_From_long((*arg5)) : SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_propget2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_hash_t **arg1 = (apr_hash_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_client_ctx_t *arg7 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg8 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_hash_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg8 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; if(!PyArg_ParseTuple(args,(char *)"ssOOOO|O:svn_client_propget2",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg8 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_propget2(arg1,(char const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { /* toss prior result, get new result from the hash */ Py_DECREF(resultobj); resultobj = svn_swig_py_prophash_to_dict(*arg1); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_propget(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_hash_t **arg1 = (apr_hash_t **) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_hash_t *temp1 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; if(!PyArg_ParseTuple(args,(char *)"ssOOO|O:svn_client_propget",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_propget(arg1,(char const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { /* toss prior result, get new result from the hash */ Py_DECREF(resultobj); resultobj = svn_swig_py_prophash_to_dict(*arg1); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_revprop_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_string_t **arg2 = (svn_string_t **) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_revnum_t *arg5 = (svn_revnum_t *) 0 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_string_t *temp2 ; svn_revnum_t temp5 ; int res5 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg2 = &temp2; } arg5 = &temp5; res5 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOO|O:svn_client_revprop_get",&arg1,&arg3,&obj2,&obj3,&obj4)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_revprop_get((char const *)arg1,arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { PyObject *s; if (*arg2 == NULL) { Py_INCREF(Py_None); s = Py_None; } else { s = PyString_FromStringAndSize((*arg2)->data, (*arg2)->len); if (s == NULL) SWIG_fail; } resultobj = t_output_helper(resultobj, s); } resultobj = t_output_helper(resultobj, ((res5 == SWIG_NEWOBJ) ? SWIG_From_long((*arg5)) : SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_proplist2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t **arg1 = (apr_array_header_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_array_header_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = &temp1; } if(!PyArg_ParseTuple(args,(char *)"sOOOO|O:svn_client_proplist2",&arg2,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_proplist2(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { svn_client_proplist_item_t **ppitem; int i; int nelts = (*arg1)->nelts; PyObject *list = PyList_New(nelts); if (list == NULL) SWIG_fail; ppitem = (svn_client_proplist_item_t **)(*arg1)->elts; for (i = 0; i < nelts; ++i, ++ppitem) { PyObject *item = PyTuple_New(2); PyObject *name = PyString_FromStringAndSize((*ppitem)->node_name->data, (*ppitem)->node_name->len); PyObject *hash = svn_swig_py_prophash_to_dict((*ppitem)->prop_hash); if (item == NULL || name == NULL || hash == NULL) { Py_XDECREF(item); Py_XDECREF(name); Py_XDECREF(hash); Py_DECREF(list); SWIG_fail; } PyTuple_SET_ITEM(item, 0, name); PyTuple_SET_ITEM(item, 1, hash); PyList_SET_ITEM(list, i, item); } resultobj = t_output_helper(resultobj, list); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_proplist(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t **arg1 = (apr_array_header_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_array_header_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = &temp1; } if(!PyArg_ParseTuple(args,(char *)"sOOO|O:svn_client_proplist",&arg2,&obj1,&obj2,&obj3,&obj4)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_proplist(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { svn_client_proplist_item_t **ppitem; int i; int nelts = (*arg1)->nelts; PyObject *list = PyList_New(nelts); if (list == NULL) SWIG_fail; ppitem = (svn_client_proplist_item_t **)(*arg1)->elts; for (i = 0; i < nelts; ++i, ++ppitem) { PyObject *item = PyTuple_New(2); PyObject *name = PyString_FromStringAndSize((*ppitem)->node_name->data, (*ppitem)->node_name->len); PyObject *hash = svn_swig_py_prophash_to_dict((*ppitem)->prop_hash); if (item == NULL || name == NULL || hash == NULL) { Py_XDECREF(item); Py_XDECREF(name); Py_XDECREF(hash); Py_DECREF(list); SWIG_fail; } PyTuple_SET_ITEM(item, 0, name); PyTuple_SET_ITEM(item, 1, hash); PyList_SET_ITEM(list, i, item); } resultobj = t_output_helper(resultobj, list); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_revprop_list(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_hash_t **arg1 = (apr_hash_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_revnum_t *arg4 = (svn_revnum_t *) 0 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_hash_t *temp1 ; svn_revnum_t temp4 ; int res4 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; arg4 = &temp4; res4 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"sOO|O:svn_client_revprop_list",&arg2,&obj1,&obj2,&obj3)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_revprop_list(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { /* toss prior result, get new result from the hash */ Py_DECREF(resultobj); resultobj = svn_swig_py_prophash_to_dict(*arg1); } resultobj = t_output_helper(resultobj, ((res4 == SWIG_NEWOBJ) ? SWIG_From_long((*arg4)) : SWIG_NewPointerObj((void*)(arg4), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_export3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_boolean_t arg7 ; svn_boolean_t arg8 ; char *arg9 = (char *) 0 ; svn_client_ctx_t *arg10 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg11 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg11 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOOOOOzO|O:svn_client_export3",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5,&obj6,&arg9,&obj8,&obj9)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg8 = (svn_boolean_t)SWIG_As_long(obj6); if (SWIG_arg_fail(svn_argnum_obj6)) { SWIG_fail; } } { arg10 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj8, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj8, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj9) { { if (obj9 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj9 != NULL && !PyObject_HasAttrString(obj9, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj9); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_pool_t, svn_argnum_obj9, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj9; Py_XINCREF(_global_svn_swig_py_pool); arg11 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_export3(arg1,(char const *)arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8,(char const *)arg9,arg10,arg11); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_export2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; char *arg6 = (char *) 0 ; svn_client_ctx_t *arg7 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg8 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg8 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOOzO|O:svn_client_export2",&arg2,&arg3,&obj2,&obj3,&arg6,&obj5,&obj6)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg7 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg8 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_export2(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,(char const *)arg6,arg7,arg8); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_export(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_revnum_t *arg1 = (svn_revnum_t *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_revnum_t temp1 ; int res1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; res1 = SWIG_NEWOBJ; if(!PyArg_ParseTuple(args,(char *)"ssOOO|O:svn_client_export",&arg2,&arg3,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_export(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } resultobj = t_output_helper(resultobj, ((res1 == SWIG_NEWOBJ) ? SWIG_From_long((*arg1)) : SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_long, 0))); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_list(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg4 ; apr_uint32_t arg5 ; svn_boolean_t arg6 ; svn_client_list_func_t arg7 = (svn_client_list_func_t) 0 ; void *arg8 = (void *) 0 ; svn_client_ctx_t *arg9 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg10 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; PyObject * obj8 = 0 ; PyObject * obj9 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg10 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOOOOOO|O:svn_client_list",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg5 = (apr_uint32_t)SWIG_As_unsigned_SS_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj5); if (SWIG_arg_fail(svn_argnum_obj5)) { SWIG_fail; } } { arg7 = (svn_client_list_func_t)svn_swig_MustGetPtr(obj6, SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t, svn_argnum_obj6, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg8 = (void *)svn_swig_MustGetPtr(obj7, SWIGTYPE_p_void, svn_argnum_obj7, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg9 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj8, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj8, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj9) { { if (obj9 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj9 != NULL && !PyObject_HasAttrString(obj9, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj9); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj9, SWIGTYPE_p_apr_pool_t, svn_argnum_obj9, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj9; Py_XINCREF(_global_svn_swig_py_pool); arg10 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_list((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_ls3(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_hash_t **arg1 = (apr_hash_t **) 0 ; apr_hash_t **arg2 = (apr_hash_t **) 0 ; char *arg3 = (char *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg5 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg6 ; svn_client_ctx_t *arg7 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg8 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_hash_t *temp1 ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg8 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; if(!PyArg_ParseTuple(args,(char *)"OsOOOO|O:svn_client_ls3",&obj0,&arg3,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail; { arg2 = (apr_hash_t **)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_p_apr_hash_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg8 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_ls3(arg1,arg2,(char const *)arg3,(struct svn_opt_revision_t const *)arg4,(struct svn_opt_revision_t const *)arg5,arg6,arg7,arg8); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_py_convert_hash(*arg1, SWIGTYPE_p_svn_dirent_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_ls2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_hash_t **arg1 = (apr_hash_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg5 ; svn_client_ctx_t *arg6 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg7 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_hash_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg7 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; if(!PyArg_ParseTuple(args,(char *)"sOOOO|O:svn_client_ls2",&arg2,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_boolean_t)SWIG_As_long(obj3); if (SWIG_arg_fail(svn_argnum_obj3)) { SWIG_fail; } } { arg6 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg7 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_ls2(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6,arg7); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_py_convert_hash(*arg1, SWIGTYPE_p_svn_dirent_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_ls(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_hash_t **arg1 = (apr_hash_t **) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_boolean_t arg4 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; apr_hash_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = &temp1; if(!PyArg_ParseTuple(args,(char *)"sOOO|O:svn_client_ls",&arg2,&obj1,&obj2,&obj3,&obj4)) goto fail; { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_ls(arg1,(char const *)arg2,arg3,arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_py_convert_hash(*arg1, SWIGTYPE_p_svn_dirent_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_cat2(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_stream_t *arg1 = (svn_stream_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg4 = (svn_opt_revision_t *) 0 ; svn_client_ctx_t *arg5 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg6 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg6 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOOO|O:svn_client_cat2",&obj0,&arg2,&obj2,&obj3,&obj4,&obj5)) goto fail; { arg1 = svn_swig_py_make_stream (obj0, _global_pool); } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg5 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj4, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj4, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj5) { { if (obj5 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj5 != NULL && !PyObject_HasAttrString(obj5, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj5); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj5, SWIGTYPE_p_apr_pool_t, svn_argnum_obj5, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj5; Py_XINCREF(_global_svn_swig_py_pool); arg6 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_cat2(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,(struct svn_opt_revision_t const *)arg4,arg5,arg6); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_cat(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_stream_t *arg1 = (svn_stream_t *) 0 ; char *arg2 = (char *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OsOO|O:svn_client_cat",&obj0,&arg2,&obj2,&obj3,&obj4)) goto fail; { arg1 = svn_swig_py_make_stream (obj0, _global_pool); } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_cat(arg1,(char const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_lock(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; char *arg2 = (char *) 0 ; svn_boolean_t arg3 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OzOO|O:svn_client_lock",&obj0,&arg2,&obj2,&obj3,&obj4)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg3 = (svn_boolean_t)SWIG_As_long(obj2); if (SWIG_arg_fail(svn_argnum_obj2)) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj3, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj3, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj4) { { if (obj4 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj4 != NULL && !PyObject_HasAttrString(obj4, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj4); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj4, SWIGTYPE_p_apr_pool_t, svn_argnum_obj4, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj4; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_lock((apr_array_header_t const *)arg1,(char const *)arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_unlock(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; apr_array_header_t *arg1 = (apr_array_header_t *) 0 ; svn_boolean_t arg2 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"OOO|O:svn_client_unlock",&obj0,&obj1,&obj2,&obj3)) goto fail; { arg1 = (apr_array_header_t *) svn_swig_py_strings_to_array(obj0, _global_pool); if (arg1 == NULL) SWIG_fail; } { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_unlock((apr_array_header_t const *)arg1,arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_info_t_URL_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_URL_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->URL) free((char *)arg1->URL); copied = malloc(len); memcpy(copied, arg2, len); arg1->URL = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_URL_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_URL_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->URL); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_rev_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_rev_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->rev = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_rev_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_rev_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->rev); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_kind_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_node_kind_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_kind_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_node_kind_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->kind = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_kind_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_node_kind_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_kind_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_node_kind_t) ((arg1)->kind); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_repos_root_URL_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_repos_root_URL_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->repos_root_URL) free((char *)arg1->repos_root_URL); copied = malloc(len); memcpy(copied, arg2, len); arg1->repos_root_URL = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_repos_root_URL_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_repos_root_URL_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->repos_root_URL); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_repos_UUID_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_repos_UUID_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->repos_UUID) free((char *)arg1->repos_UUID); copied = malloc(len); memcpy(copied, arg2, len); arg1->repos_UUID = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_repos_UUID_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_repos_UUID_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->repos_UUID); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_last_changed_rev_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_last_changed_rev_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->last_changed_rev = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_last_changed_rev_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_last_changed_rev_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->last_changed_rev); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_last_changed_date_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_time_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_last_changed_date_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } arg2 = (apr_time_t) PyLong_AsLongLong(obj1); if (arg1) (arg1)->last_changed_date = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_last_changed_date_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_time_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_last_changed_date_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = ((arg1)->last_changed_date); resultobj = PyLong_FromLongLong((apr_int64_t)(result)); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_last_changed_author_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_last_changed_author_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->last_changed_author) free((char *)arg1->last_changed_author); copied = malloc(len); memcpy(copied, arg2, len); arg1->last_changed_author = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_last_changed_author_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_last_changed_author_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->last_changed_author); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_lock_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_lock_t *arg2 = (svn_lock_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_lock_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_lock_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_lock_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (arg1) (arg1)->lock = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_lock_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_lock_t *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_lock_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_lock_t *) ((arg1)->lock); resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_lock_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_has_wc_info_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_boolean_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_has_wc_info_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_boolean_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->has_wc_info = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_has_wc_info_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_boolean_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_has_wc_info_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_boolean_t) ((arg1)->has_wc_info); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_schedule_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_wc_schedule_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_schedule_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_wc_schedule_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->schedule = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_schedule_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_wc_schedule_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_schedule_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_wc_schedule_t) ((arg1)->schedule); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_copyfrom_url_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Oz:svn_info_t_copyfrom_url_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->copyfrom_url) free((char *)arg1->copyfrom_url); copied = malloc(len); memcpy(copied, arg2, len); arg1->copyfrom_url = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_copyfrom_url_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_copyfrom_url_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->copyfrom_url); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_copyfrom_rev_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_revnum_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_copyfrom_rev_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg2 = (svn_revnum_t)SWIG_As_long(obj1); if (SWIG_arg_fail(svn_argnum_obj1)) { SWIG_fail; } } if (arg1) (arg1)->copyfrom_rev = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_copyfrom_rev_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; svn_revnum_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_copyfrom_rev_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (svn_revnum_t) ((arg1)->copyfrom_rev); { resultobj = SWIG_From_long((long)(result)); } return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_text_time_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_time_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_text_time_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } arg2 = (apr_time_t) PyLong_AsLongLong(obj1); if (arg1) (arg1)->text_time = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_text_time_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_time_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_text_time_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = ((arg1)->text_time); resultobj = PyLong_FromLongLong((apr_int64_t)(result)); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_prop_time_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_time_t arg2 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"OO:svn_info_t_prop_time_set",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } arg2 = (apr_time_t) PyLong_AsLongLong(obj1); if (arg1) (arg1)->prop_time = arg2; Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_prop_time_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_time_t result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_prop_time_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = ((arg1)->prop_time); resultobj = PyLong_FromLongLong((apr_int64_t)(result)); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_checksum_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_checksum_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->checksum) free((char *)arg1->checksum); copied = malloc(len); memcpy(copied, arg2, len); arg1->checksum = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_checksum_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_checksum_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->checksum); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_conflict_old_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_conflict_old_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->conflict_old) free((char *)arg1->conflict_old); copied = malloc(len); memcpy(copied, arg2, len); arg1->conflict_old = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_conflict_old_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_conflict_old_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->conflict_old); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_conflict_new_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_conflict_new_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->conflict_new) free((char *)arg1->conflict_new); copied = malloc(len); memcpy(copied, arg2, len); arg1->conflict_new = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_conflict_new_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_conflict_new_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->conflict_new); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_conflict_wrk_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_conflict_wrk_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->conflict_wrk) free((char *)arg1->conflict_wrk); copied = malloc(len); memcpy(copied, arg2, len); arg1->conflict_wrk = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_conflict_wrk_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_conflict_wrk_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->conflict_wrk); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_prejfile_set(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *arg2 = (char *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"Os:svn_info_t_prejfile_set",&obj0,&arg2)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { apr_size_t len = strlen(arg2) + 1; char *copied; if (arg1->prejfile) free((char *)arg1->prejfile); copied = malloc(len); memcpy(copied, arg2, len); arg1->prejfile = copied; } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject *_wrap_svn_info_t_prejfile_get(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; char *result; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:svn_info_t_prejfile_get",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } result = (char *) ((arg1)->prejfile); resultobj = SWIG_FromCharPtr(result); return resultobj; fail: return NULL; } static PyObject *_wrap_new_svn_info_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *result; if(!PyArg_ParseTuple(args,(char *)":new_svn_info_t")) goto fail; { svn_swig_py_release_py_lock(); result = (svn_info_t *)(svn_info_t *) calloc(1, sizeof(svn_info_t)); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_info_t, _global_svn_swig_py_pool); return resultobj; fail: return NULL; } static PyObject *_wrap_delete_svn_info_t(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; PyObject *_global_svn_swig_py_pool ; apr_pool_t *_global_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } if(!PyArg_ParseTuple(args,(char *)"O:delete_svn_info_t",&obj0)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { svn_swig_py_release_py_lock(); free((char *) arg1); svn_swig_py_acquire_py_lock(); } Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } static PyObject * svn_info_t_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; SWIG_TypeClientData(SWIGTYPE_p_svn_info_t, obj); Py_INCREF(obj); return Py_BuildValue((char *)""); } static PyObject *_wrap_svn_info_dup(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_info_t *arg1 = (svn_info_t *) 0 ; apr_pool_t *arg2 = (apr_pool_t *) 0 ; svn_info_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg2 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"O|O:svn_info_dup",&obj0,&obj1)) goto fail; { arg1 = (svn_info_t *)svn_swig_MustGetPtr(obj0, SWIGTYPE_p_svn_info_t, svn_argnum_obj0, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj1) { { if (obj1 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj1 != NULL && !PyObject_HasAttrString(obj1, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj1); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_pool_t, svn_argnum_obj1, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj1; Py_XINCREF(_global_svn_swig_py_pool); arg2 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_info_t *)svn_info_dup((struct svn_info_t const *)arg1,arg2); svn_swig_py_acquire_py_lock(); } resultobj = svn_swig_NewPointerObj((void*)(result), SWIGTYPE_p_svn_info_t, _global_svn_swig_py_pool); { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_info(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char *arg1 = (char *) 0 ; svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ; svn_opt_revision_t *arg3 = (svn_opt_revision_t *) 0 ; svn_info_receiver_t arg4 = (svn_info_receiver_t) 0 ; void *arg5 = (void *) 0 ; svn_boolean_t arg6 ; svn_client_ctx_t *arg7 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg8 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg8 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } if(!PyArg_ParseTuple(args,(char *)"sOOOOO|O:svn_client_info",&arg1,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail; { arg2 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg3 = (svn_opt_revision_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_opt_revision_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = svn_swig_py_info_receiver_func; arg5 = (void *)obj3; } { arg6 = (svn_boolean_t)SWIG_As_long(obj4); if (SWIG_arg_fail(svn_argnum_obj4)) { SWIG_fail; } } { arg7 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj5, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj5, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj6) { { if (obj6 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj6 != NULL && !PyObject_HasAttrString(obj6, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj6); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj6, SWIGTYPE_p_apr_pool_t, svn_argnum_obj6, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj6; Py_XINCREF(_global_svn_swig_py_pool); arg8 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_info((char const *)arg1,(struct svn_opt_revision_t const *)arg2,(struct svn_opt_revision_t const *)arg3,arg4,arg5,arg6,arg7,arg8); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_url_from_path(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char **arg1 = (char **) 0 ; char *arg2 = (char *) 0 ; apr_pool_t *arg3 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; char const *temp1 = NULL ; PyObject * obj1 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg3 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = (char **)&temp1; if(!PyArg_ParseTuple(args,(char *)"s|O:svn_client_url_from_path",&arg2,&obj1)) goto fail; if (obj1) { { if (obj1 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj1 != NULL && !PyObject_HasAttrString(obj1, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj1); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj1, SWIGTYPE_p_apr_pool_t, svn_argnum_obj1, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj1; Py_XINCREF(_global_svn_swig_py_pool); arg3 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_url_from_path((char const **)arg1,(char const *)arg2,arg3); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { PyObject *s; if (*arg1 == NULL) { Py_INCREF(Py_None); s = Py_None; } else { s = PyString_FromString(*arg1); if (s == NULL) SWIG_fail; } resultobj = t_output_helper(resultobj, s); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_uuid_from_url(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char **arg1 = (char **) 0 ; char *arg2 = (char *) 0 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; char const *temp1 = NULL ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = (char **)&temp1; if(!PyArg_ParseTuple(args,(char *)"sO|O:svn_client_uuid_from_url",&arg2,&obj1,&obj2)) goto fail; { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_uuid_from_url((char const **)arg1,(char const *)arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { PyObject *s; if (*arg1 == NULL) { Py_INCREF(Py_None); s = Py_None; } else { s = PyString_FromString(*arg1); if (s == NULL) SWIG_fail; } resultobj = t_output_helper(resultobj, s); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_uuid_from_path(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; char **arg1 = (char **) 0 ; char *arg2 = (char *) 0 ; svn_wc_adm_access_t *arg3 = (svn_wc_adm_access_t *) 0 ; svn_client_ctx_t *arg4 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg5 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; char const *temp1 = NULL ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg5 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } arg1 = (char **)&temp1; if(!PyArg_ParseTuple(args,(char *)"sOO|O:svn_client_uuid_from_path",&arg2,&obj1,&obj2,&obj3)) goto fail; { arg3 = (svn_wc_adm_access_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_wc_adm_access_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } { arg4 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj2, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj2, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj3) { { if (obj3 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj3 != NULL && !PyObject_HasAttrString(obj3, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj3); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj3, SWIGTYPE_p_apr_pool_t, svn_argnum_obj3, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj3; Py_XINCREF(_global_svn_swig_py_pool); arg5 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_uuid_from_path((char const **)arg1,(char const *)arg2,arg3,arg4,arg5); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { PyObject *s; if (*arg1 == NULL) { Py_INCREF(Py_None); s = Py_None; } else { s = PyString_FromString(*arg1); if (s == NULL) SWIG_fail; } resultobj = t_output_helper(resultobj, s); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyObject *_wrap_svn_client_open_ra_session(PyObject *self, PyObject *args) { PyObject *resultobj = NULL; svn_ra_session_t **arg1 = (svn_ra_session_t **) 0 ; char *arg2 = (char *) 0 ; svn_client_ctx_t *arg3 = (svn_client_ctx_t *) 0 ; apr_pool_t *arg4 = (apr_pool_t *) 0 ; svn_error_t *result; apr_pool_t *_global_pool ; PyObject *_global_svn_swig_py_pool ; int _global_pool_is_default_pool ; int _global_pool_is_application_pool ; svn_ra_session_t *temp1 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { _global_pool_is_application_pool = 1; svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); } { int argnum = PyTuple_GET_SIZE(args) - 1; _global_pool_is_application_pool = 0; _global_pool_is_default_pool = 1; if (argnum >= 0) { PyObject *input = PyTuple_GET_ITEM(args, argnum); if (input != Py_None && PyObject_HasAttrString(input, (char *)"_mark_valid")) { _global_pool = svn_swig_MustGetPtr(input, SWIGTYPE_p_apr_pool_t, argnum+1, NULL); if (PyErr_Occurred()) { _global_svn_swig_py_pool = NULL; SWIG_fail; } _global_svn_swig_py_pool = input; Py_XINCREF(_global_svn_swig_py_pool); _global_pool_is_default_pool = 0; } else { if (PyErr_Occurred()) { PyErr_Clear(); } svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } } else { svn_swig_get_application_pool(&_global_svn_swig_py_pool, &_global_pool); /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,258,svn_swig_py_pool_create_subpool@*/ if (_global_svn_swig_py_pool != NULL) { _global_pool = svn_pool_create(_global_pool); _global_svn_swig_py_pool = svn_swig_NewPointerObj(_global_pool, SWIGTYPE_p_apr_pool_t, _global_svn_swig_py_pool); } /*@@*/; } arg4 = _global_pool; /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (_global_svn_swig_py_pool != NULL && !PyObject_HasAttrString(_global_svn_swig_py_pool, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), _global_svn_swig_py_pool); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ } { arg1 = (svn_ra_session_t **)&temp1; } if(!PyArg_ParseTuple(args,(char *)"sO|O:svn_client_open_ra_session",&arg2,&obj1,&obj2)) goto fail; { arg3 = (svn_client_ctx_t *)svn_swig_MustGetPtr(obj1, SWIGTYPE_p_svn_client_ctx_t, svn_argnum_obj1, _global_pool_is_application_pool ? &_global_svn_swig_py_pool : NULL); if (PyErr_Occurred()) { SWIG_fail; } } if (obj2) { { if (obj2 != Py_None && _global_pool_is_default_pool == 1) { /*@/home/dave/svn/env/.dist_sandbox/subversion-1.4.4/subversion/bindings/swig/include/svn_types.swg,246,svn_swig_py_pool_check@*/ if (obj2 != NULL && !PyObject_HasAttrString(obj2, (char *)"_mark_valid")) { int argnum = PyTuple_GET_SIZE(args); SWIG_Python_TypeError(SWIG_TypePrettyName(SWIGTYPE_p_apr_pool_t), obj2); SWIG_arg_fail(argnum); SWIG_fail; } /*@@*/ _global_pool = svn_swig_MustGetPtr(obj2, SWIGTYPE_p_apr_pool_t, svn_argnum_obj2, NULL); if (PyErr_Occurred()) { SWIG_fail; } Py_XDECREF(_global_svn_swig_py_pool); _global_svn_swig_py_pool = obj2; Py_XINCREF(_global_svn_swig_py_pool); arg4 = _global_pool; } } } { svn_swig_py_release_py_lock(); result = (svn_error_t *)svn_client_open_ra_session(arg1,(char const *)arg2,arg3,arg4); svn_swig_py_acquire_py_lock(); } { if (result != NULL) { if (result->apr_err != SVN_ERR_SWIG_PY_EXCEPTION_SET) svn_swig_py_svn_exception(result); else svn_error_clear(result); SWIG_fail; } Py_INCREF(Py_None); resultobj = Py_None; } { resultobj = t_output_helper(resultobj, svn_swig_NewPointerObj(*arg1, SWIGTYPE_p_svn_ra_session_t, _global_svn_swig_py_pool)); } { Py_XDECREF(_global_svn_swig_py_pool); } return resultobj; fail: { Py_XDECREF(_global_svn_swig_py_pool); } return NULL; } static PyMethodDef SwigMethods[] = { { (char *)"svn_client_version", _wrap_svn_client_version, METH_VARARGS, NULL}, { (char *)"svn_client_get_simple_prompt_provider", _wrap_svn_client_get_simple_prompt_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_username_prompt_provider", _wrap_svn_client_get_username_prompt_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_simple_provider", _wrap_svn_client_get_simple_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_username_provider", _wrap_svn_client_get_username_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_ssl_server_trust_file_provider", _wrap_svn_client_get_ssl_server_trust_file_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_ssl_client_cert_file_provider", _wrap_svn_client_get_ssl_client_cert_file_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_ssl_client_cert_pw_file_provider", _wrap_svn_client_get_ssl_client_cert_pw_file_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_ssl_server_trust_prompt_provider", _wrap_svn_client_get_ssl_server_trust_prompt_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_ssl_client_cert_prompt_provider", _wrap_svn_client_get_ssl_client_cert_prompt_provider, METH_VARARGS, NULL}, { (char *)"svn_client_get_ssl_client_cert_pw_prompt_provider", _wrap_svn_client_get_ssl_client_cert_pw_prompt_provider, METH_VARARGS, NULL}, { (char *)"svn_client_proplist_item_dup", _wrap_svn_client_proplist_item_dup, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_revision_set", _wrap_svn_client_commit_info_t_revision_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_revision_get", _wrap_svn_client_commit_info_t_revision_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_date_set", _wrap_svn_client_commit_info_t_date_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_date_get", _wrap_svn_client_commit_info_t_date_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_author_set", _wrap_svn_client_commit_info_t_author_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_author_get", _wrap_svn_client_commit_info_t_author_get, METH_VARARGS, NULL}, { (char *)"new_svn_client_commit_info_t", _wrap_new_svn_client_commit_info_t, METH_VARARGS, NULL}, { (char *)"delete_svn_client_commit_info_t", _wrap_delete_svn_client_commit_info_t, METH_VARARGS, NULL}, { (char *)"svn_client_commit_info_t_swigregister", svn_client_commit_info_t_swigregister, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_path_set", _wrap_svn_client_commit_item2_t_path_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_path_get", _wrap_svn_client_commit_item2_t_path_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_kind_set", _wrap_svn_client_commit_item2_t_kind_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_kind_get", _wrap_svn_client_commit_item2_t_kind_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_url_set", _wrap_svn_client_commit_item2_t_url_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_url_get", _wrap_svn_client_commit_item2_t_url_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_revision_set", _wrap_svn_client_commit_item2_t_revision_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_revision_get", _wrap_svn_client_commit_item2_t_revision_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_copyfrom_url_set", _wrap_svn_client_commit_item2_t_copyfrom_url_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_copyfrom_url_get", _wrap_svn_client_commit_item2_t_copyfrom_url_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_copyfrom_rev_set", _wrap_svn_client_commit_item2_t_copyfrom_rev_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_copyfrom_rev_get", _wrap_svn_client_commit_item2_t_copyfrom_rev_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_state_flags_set", _wrap_svn_client_commit_item2_t_state_flags_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_state_flags_get", _wrap_svn_client_commit_item2_t_state_flags_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_wcprop_changes_set", _wrap_svn_client_commit_item2_t_wcprop_changes_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_wcprop_changes_get", _wrap_svn_client_commit_item2_t_wcprop_changes_get, METH_VARARGS, NULL}, { (char *)"new_svn_client_commit_item2_t", _wrap_new_svn_client_commit_item2_t, METH_VARARGS, NULL}, { (char *)"delete_svn_client_commit_item2_t", _wrap_delete_svn_client_commit_item2_t, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_t_swigregister", svn_client_commit_item2_t_swigregister, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item2_dup", _wrap_svn_client_commit_item2_dup, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_path_set", _wrap_svn_client_commit_item_t_path_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_path_get", _wrap_svn_client_commit_item_t_path_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_kind_set", _wrap_svn_client_commit_item_t_kind_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_kind_get", _wrap_svn_client_commit_item_t_kind_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_url_set", _wrap_svn_client_commit_item_t_url_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_url_get", _wrap_svn_client_commit_item_t_url_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_revision_set", _wrap_svn_client_commit_item_t_revision_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_revision_get", _wrap_svn_client_commit_item_t_revision_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_copyfrom_url_set", _wrap_svn_client_commit_item_t_copyfrom_url_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_copyfrom_url_get", _wrap_svn_client_commit_item_t_copyfrom_url_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_state_flags_set", _wrap_svn_client_commit_item_t_state_flags_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_state_flags_get", _wrap_svn_client_commit_item_t_state_flags_get, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_wcprop_changes_set", _wrap_svn_client_commit_item_t_wcprop_changes_set, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_wcprop_changes_get", _wrap_svn_client_commit_item_t_wcprop_changes_get, METH_VARARGS, NULL}, { (char *)"new_svn_client_commit_item_t", _wrap_new_svn_client_commit_item_t, METH_VARARGS, NULL}, { (char *)"delete_svn_client_commit_item_t", _wrap_delete_svn_client_commit_item_t, METH_VARARGS, NULL}, { (char *)"svn_client_commit_item_t_swigregister", svn_client_commit_item_t_swigregister, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_path_set", _wrap_svn_client_diff_summarize_t_path_set, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_path_get", _wrap_svn_client_diff_summarize_t_path_get, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_summarize_kind_set", _wrap_svn_client_diff_summarize_t_summarize_kind_set, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_summarize_kind_get", _wrap_svn_client_diff_summarize_t_summarize_kind_get, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_prop_changed_set", _wrap_svn_client_diff_summarize_t_prop_changed_set, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_prop_changed_get", _wrap_svn_client_diff_summarize_t_prop_changed_get, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_node_kind_set", _wrap_svn_client_diff_summarize_t_node_kind_set, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_node_kind_get", _wrap_svn_client_diff_summarize_t_node_kind_get, METH_VARARGS, NULL}, { (char *)"new_svn_client_diff_summarize_t", _wrap_new_svn_client_diff_summarize_t, METH_VARARGS, NULL}, { (char *)"delete_svn_client_diff_summarize_t", _wrap_delete_svn_client_diff_summarize_t, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_t_swigregister", svn_client_diff_summarize_t_swigregister, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_dup", _wrap_svn_client_diff_summarize_dup, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_auth_baton_set", _wrap_svn_client_ctx_t_auth_baton_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_auth_baton_get", _wrap_svn_client_ctx_t_auth_baton_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_func_set", _wrap_svn_client_ctx_t_notify_func_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_func_get", _wrap_svn_client_ctx_t_notify_func_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_baton_set", _wrap_svn_client_ctx_t_notify_baton_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_baton_get", _wrap_svn_client_ctx_t_notify_baton_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_func_set", _wrap_svn_client_ctx_t_log_msg_func_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_func_get", _wrap_svn_client_ctx_t_log_msg_func_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_baton_set", _wrap_svn_client_ctx_t_log_msg_baton_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_baton_get", _wrap_svn_client_ctx_t_log_msg_baton_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_config_set", _wrap_svn_client_ctx_t_config_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_config_get", _wrap_svn_client_ctx_t_config_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_cancel_func_set", _wrap_svn_client_ctx_t_cancel_func_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_cancel_func_get", _wrap_svn_client_ctx_t_cancel_func_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_cancel_baton_set", _wrap_svn_client_ctx_t_cancel_baton_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_cancel_baton_get", _wrap_svn_client_ctx_t_cancel_baton_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_func2_set", _wrap_svn_client_ctx_t_notify_func2_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_func2_get", _wrap_svn_client_ctx_t_notify_func2_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_baton2_set", _wrap_svn_client_ctx_t_notify_baton2_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_notify_baton2_get", _wrap_svn_client_ctx_t_notify_baton2_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_func2_set", _wrap_svn_client_ctx_t_log_msg_func2_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_func2_get", _wrap_svn_client_ctx_t_log_msg_func2_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_baton2_set", _wrap_svn_client_ctx_t_log_msg_baton2_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_log_msg_baton2_get", _wrap_svn_client_ctx_t_log_msg_baton2_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_progress_func_set", _wrap_svn_client_ctx_t_progress_func_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_progress_func_get", _wrap_svn_client_ctx_t_progress_func_get, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_progress_baton_set", _wrap_svn_client_ctx_t_progress_baton_set, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_progress_baton_get", _wrap_svn_client_ctx_t_progress_baton_get, METH_VARARGS, NULL}, { (char *)"new_svn_client_ctx_t", _wrap_new_svn_client_ctx_t, METH_VARARGS, NULL}, { (char *)"delete_svn_client_ctx_t", _wrap_delete_svn_client_ctx_t, METH_VARARGS, NULL}, { (char *)"svn_client_ctx_t_swigregister", svn_client_ctx_t_swigregister, METH_VARARGS, NULL}, { (char *)"svn_client_create_context", _wrap_svn_client_create_context, METH_VARARGS, NULL}, { (char *)"svn_client_checkout2", _wrap_svn_client_checkout2, METH_VARARGS, NULL}, { (char *)"svn_client_checkout", _wrap_svn_client_checkout, METH_VARARGS, NULL}, { (char *)"svn_client_update2", _wrap_svn_client_update2, METH_VARARGS, NULL}, { (char *)"svn_client_update", _wrap_svn_client_update, METH_VARARGS, NULL}, { (char *)"svn_client_switch", _wrap_svn_client_switch, METH_VARARGS, NULL}, { (char *)"svn_client_add3", _wrap_svn_client_add3, METH_VARARGS, NULL}, { (char *)"svn_client_add2", _wrap_svn_client_add2, METH_VARARGS, NULL}, { (char *)"svn_client_add", _wrap_svn_client_add, METH_VARARGS, NULL}, { (char *)"svn_client_mkdir2", _wrap_svn_client_mkdir2, METH_VARARGS, NULL}, { (char *)"svn_client_mkdir", _wrap_svn_client_mkdir, METH_VARARGS, NULL}, { (char *)"svn_client_delete2", _wrap_svn_client_delete2, METH_VARARGS, NULL}, { (char *)"svn_client_delete", _wrap_svn_client_delete, METH_VARARGS, NULL}, { (char *)"svn_client_import2", _wrap_svn_client_import2, METH_VARARGS, NULL}, { (char *)"svn_client_import", _wrap_svn_client_import, METH_VARARGS, NULL}, { (char *)"svn_client_commit3", _wrap_svn_client_commit3, METH_VARARGS, NULL}, { (char *)"svn_client_commit2", _wrap_svn_client_commit2, METH_VARARGS, NULL}, { (char *)"svn_client_commit", _wrap_svn_client_commit, METH_VARARGS, NULL}, { (char *)"svn_client_status2", _wrap_svn_client_status2, METH_VARARGS, NULL}, { (char *)"svn_client_status", _wrap_svn_client_status, METH_VARARGS, NULL}, { (char *)"svn_client_log3", _wrap_svn_client_log3, METH_VARARGS, NULL}, { (char *)"svn_client_log2", _wrap_svn_client_log2, METH_VARARGS, NULL}, { (char *)"svn_client_log", _wrap_svn_client_log, METH_VARARGS, NULL}, { (char *)"svn_client_blame3", _wrap_svn_client_blame3, METH_VARARGS, NULL}, { (char *)"svn_client_blame2", _wrap_svn_client_blame2, METH_VARARGS, NULL}, { (char *)"svn_client_blame", _wrap_svn_client_blame, METH_VARARGS, NULL}, { (char *)"svn_client_diff3", _wrap_svn_client_diff3, METH_VARARGS, NULL}, { (char *)"svn_client_diff2", _wrap_svn_client_diff2, METH_VARARGS, NULL}, { (char *)"svn_client_diff", _wrap_svn_client_diff, METH_VARARGS, NULL}, { (char *)"svn_client_diff_peg3", _wrap_svn_client_diff_peg3, METH_VARARGS, NULL}, { (char *)"svn_client_diff_peg2", _wrap_svn_client_diff_peg2, METH_VARARGS, NULL}, { (char *)"svn_client_diff_peg", _wrap_svn_client_diff_peg, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize", _wrap_svn_client_diff_summarize, METH_VARARGS, NULL}, { (char *)"svn_client_diff_summarize_peg", _wrap_svn_client_diff_summarize_peg, METH_VARARGS, NULL}, { (char *)"svn_client_merge2", _wrap_svn_client_merge2, METH_VARARGS, NULL}, { (char *)"svn_client_merge", _wrap_svn_client_merge, METH_VARARGS, NULL}, { (char *)"svn_client_merge_peg2", _wrap_svn_client_merge_peg2, METH_VARARGS, NULL}, { (char *)"svn_client_merge_peg", _wrap_svn_client_merge_peg, METH_VARARGS, NULL}, { (char *)"svn_client_cleanup", _wrap_svn_client_cleanup, METH_VARARGS, NULL}, { (char *)"svn_client_relocate", _wrap_svn_client_relocate, METH_VARARGS, NULL}, { (char *)"svn_client_revert", _wrap_svn_client_revert, METH_VARARGS, NULL}, { (char *)"svn_client_resolved", _wrap_svn_client_resolved, METH_VARARGS, NULL}, { (char *)"svn_client_copy3", _wrap_svn_client_copy3, METH_VARARGS, NULL}, { (char *)"svn_client_copy2", _wrap_svn_client_copy2, METH_VARARGS, NULL}, { (char *)"svn_client_copy", _wrap_svn_client_copy, METH_VARARGS, NULL}, { (char *)"svn_client_move4", _wrap_svn_client_move4, METH_VARARGS, NULL}, { (char *)"svn_client_move3", _wrap_svn_client_move3, METH_VARARGS, NULL}, { (char *)"svn_client_move2", _wrap_svn_client_move2, METH_VARARGS, NULL}, { (char *)"svn_client_move", _wrap_svn_client_move, METH_VARARGS, NULL}, { (char *)"svn_client_propset2", _wrap_svn_client_propset2, METH_VARARGS, NULL}, { (char *)"svn_client_propset", _wrap_svn_client_propset, METH_VARARGS, NULL}, { (char *)"svn_client_revprop_set", _wrap_svn_client_revprop_set, METH_VARARGS, NULL}, { (char *)"svn_client_propget2", _wrap_svn_client_propget2, METH_VARARGS, NULL}, { (char *)"svn_client_propget", _wrap_svn_client_propget, METH_VARARGS, NULL}, { (char *)"svn_client_revprop_get", _wrap_svn_client_revprop_get, METH_VARARGS, NULL}, { (char *)"svn_client_proplist2", _wrap_svn_client_proplist2, METH_VARARGS, NULL}, { (char *)"svn_client_proplist", _wrap_svn_client_proplist, METH_VARARGS, NULL}, { (char *)"svn_client_revprop_list", _wrap_svn_client_revprop_list, METH_VARARGS, NULL}, { (char *)"svn_client_export3", _wrap_svn_client_export3, METH_VARARGS, NULL}, { (char *)"svn_client_export2", _wrap_svn_client_export2, METH_VARARGS, NULL}, { (char *)"svn_client_export", _wrap_svn_client_export, METH_VARARGS, NULL}, { (char *)"svn_client_list", _wrap_svn_client_list, METH_VARARGS, NULL}, { (char *)"svn_client_ls3", _wrap_svn_client_ls3, METH_VARARGS, NULL}, { (char *)"svn_client_ls2", _wrap_svn_client_ls2, METH_VARARGS, NULL}, { (char *)"svn_client_ls", _wrap_svn_client_ls, METH_VARARGS, NULL}, { (char *)"svn_client_cat2", _wrap_svn_client_cat2, METH_VARARGS, NULL}, { (char *)"svn_client_cat", _wrap_svn_client_cat, METH_VARARGS, NULL}, { (char *)"svn_client_lock", _wrap_svn_client_lock, METH_VARARGS, NULL}, { (char *)"svn_client_unlock", _wrap_svn_client_unlock, METH_VARARGS, NULL}, { (char *)"svn_info_t_URL_set", _wrap_svn_info_t_URL_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_URL_get", _wrap_svn_info_t_URL_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_rev_set", _wrap_svn_info_t_rev_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_rev_get", _wrap_svn_info_t_rev_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_kind_set", _wrap_svn_info_t_kind_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_kind_get", _wrap_svn_info_t_kind_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_repos_root_URL_set", _wrap_svn_info_t_repos_root_URL_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_repos_root_URL_get", _wrap_svn_info_t_repos_root_URL_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_repos_UUID_set", _wrap_svn_info_t_repos_UUID_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_repos_UUID_get", _wrap_svn_info_t_repos_UUID_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_last_changed_rev_set", _wrap_svn_info_t_last_changed_rev_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_last_changed_rev_get", _wrap_svn_info_t_last_changed_rev_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_last_changed_date_set", _wrap_svn_info_t_last_changed_date_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_last_changed_date_get", _wrap_svn_info_t_last_changed_date_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_last_changed_author_set", _wrap_svn_info_t_last_changed_author_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_last_changed_author_get", _wrap_svn_info_t_last_changed_author_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_lock_set", _wrap_svn_info_t_lock_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_lock_get", _wrap_svn_info_t_lock_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_has_wc_info_set", _wrap_svn_info_t_has_wc_info_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_has_wc_info_get", _wrap_svn_info_t_has_wc_info_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_schedule_set", _wrap_svn_info_t_schedule_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_schedule_get", _wrap_svn_info_t_schedule_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_copyfrom_url_set", _wrap_svn_info_t_copyfrom_url_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_copyfrom_url_get", _wrap_svn_info_t_copyfrom_url_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_copyfrom_rev_set", _wrap_svn_info_t_copyfrom_rev_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_copyfrom_rev_get", _wrap_svn_info_t_copyfrom_rev_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_text_time_set", _wrap_svn_info_t_text_time_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_text_time_get", _wrap_svn_info_t_text_time_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_prop_time_set", _wrap_svn_info_t_prop_time_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_prop_time_get", _wrap_svn_info_t_prop_time_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_checksum_set", _wrap_svn_info_t_checksum_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_checksum_get", _wrap_svn_info_t_checksum_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_conflict_old_set", _wrap_svn_info_t_conflict_old_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_conflict_old_get", _wrap_svn_info_t_conflict_old_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_conflict_new_set", _wrap_svn_info_t_conflict_new_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_conflict_new_get", _wrap_svn_info_t_conflict_new_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_conflict_wrk_set", _wrap_svn_info_t_conflict_wrk_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_conflict_wrk_get", _wrap_svn_info_t_conflict_wrk_get, METH_VARARGS, NULL}, { (char *)"svn_info_t_prejfile_set", _wrap_svn_info_t_prejfile_set, METH_VARARGS, NULL}, { (char *)"svn_info_t_prejfile_get", _wrap_svn_info_t_prejfile_get, METH_VARARGS, NULL}, { (char *)"new_svn_info_t", _wrap_new_svn_info_t, METH_VARARGS, NULL}, { (char *)"delete_svn_info_t", _wrap_delete_svn_info_t, METH_VARARGS, NULL}, { (char *)"svn_info_t_swigregister", svn_info_t_swigregister, METH_VARARGS, NULL}, { (char *)"svn_info_dup", _wrap_svn_info_dup, METH_VARARGS, NULL}, { (char *)"svn_client_info", _wrap_svn_client_info, METH_VARARGS, NULL}, { (char *)"svn_client_url_from_path", _wrap_svn_client_url_from_path, METH_VARARGS, NULL}, { (char *)"svn_client_uuid_from_url", _wrap_svn_client_uuid_from_url, METH_VARARGS, NULL}, { (char *)"svn_client_uuid_from_path", _wrap_svn_client_uuid_from_path, METH_VARARGS, NULL}, { (char *)"svn_client_open_ra_session", _wrap_svn_client_open_ra_session, METH_VARARGS, NULL}, { NULL, NULL, 0, NULL } }; /* -------- 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, 0}; static swig_type_info _swigt__p_apr_file_t = {"_p_apr_file_t", "apr_file_t *", 0, 0, 0}; static swig_type_info _swigt__p_apr_hash_t = {"_p_apr_hash_t", "apr_hash_t *", 0, 0, 0}; static swig_type_info _swigt__p_apr_int32_t = {"_p_apr_int32_t", "apr_int32_t *|time_t *", 0, 0, 0}; static swig_type_info _swigt__p_apr_int64_t = {"_p_apr_int64_t", "apr_int64_t *|svn_filesize_t *", 0, 0, 0}; static swig_type_info _swigt__p_apr_pool_t = {"_p_apr_pool_t", "apr_pool_t *", 0, 0, 0}; static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, 0}; static swig_type_info _swigt__p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void = {"_p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void", "void (*)(apr_off_t,apr_off_t,void *,apr_pool_t *)|svn_ra_progress_notify_func_t", 0, 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", "struct svn_error_t *(*)(apr_getopt_t *,void *,apr_pool_t *)|svn_opt_subcommand_t *", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(char const **,char const **,apr_array_header_t *,void *,apr_pool_t *)|svn_client_get_commit_log_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(char const **,char const **,apr_array_header_t const *,void *,apr_pool_t *)|svn_client_get_commit_log2_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_svn_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_svn_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_auth_cred_simple_t **,void *,char const *,char const *,svn_boolean_t,apr_pool_t *)|svn_auth_simple_prompt_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_svn_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_svn_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_auth_cred_ssl_client_cert_pw_t **,void *,char const *,svn_boolean_t,apr_pool_t *)|svn_auth_ssl_client_cert_pw_prompt_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_svn_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_svn_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_auth_cred_ssl_client_cert_t **,void *,char const *,svn_boolean_t,apr_pool_t *)|svn_auth_ssl_client_cert_prompt_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_svn_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_svn_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_auth_cred_ssl_server_trust_t **,void *,char const *,apr_uint32_t,svn_auth_ssl_server_cert_info_t const *,svn_boolean_t,apr_pool_t *)|svn_auth_ssl_server_trust_prompt_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_p_svn_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_svn_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_auth_cred_username_t **,void *,char const *,svn_boolean_t,apr_pool_t *)|svn_auth_username_prompt_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_client_diff_summarize_t const *,void *,apr_pool_t *)|svn_client_diff_summarize_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void__p_svn_error_t = {"_p_f_p_void__p_svn_error_t", "struct svn_error_t *(*)(void *)|svn_cancel_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void_apr_int64_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_apr_int64_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_int64_t,svn_revnum_t,char const *,char const *,char const *,apr_pool_t *)|svn_client_blame_receiver_t", 0, 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, 0}; static swig_type_info _swigt__p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void = {"_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void", "void (*)(void *,char const *,enum svn_wc_notify_action_t,enum svn_node_kind_t,char const *,enum svn_wc_notify_state_t,enum svn_wc_notify_state_t,long)|svn_wc_notify_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,svn_dirent_t const *,svn_lock_t const *,char const *,apr_pool_t *)|svn_client_list_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__svn_info_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__svn_info_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,svn_info_t const *,apr_pool_t *)|svn_info_receiver_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void = {"_p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void", "void (*)(void *,char const *,struct svn_wc_status2_t *)|svn_wc_status_func2_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void = {"_p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void", "void (*)(void *,char const *,struct svn_wc_status_t *)|svn_wc_status_func_t", 0, 0, 0}; static swig_type_info _swigt__p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void = {"_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void", "void (*)(void *,struct svn_wc_notify_t const *,apr_pool_t *)|svn_wc_notify_func2_t", 0, 0, 0}; static swig_type_info _swigt__p_int = {"_p_int", "int *|svn_boolean_t *", 0, 0, 0}; static swig_type_info _swigt__p_long = {"_p_long", "long *|svn_revnum_t *", 0, 0, 0}; static swig_type_info _swigt__p_p_apr_array_header_t = {"_p_p_apr_array_header_t", "apr_array_header_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_apr_hash_t = {"_p_p_apr_hash_t", "apr_hash_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, 0}; static swig_type_info _swigt__p_p_svn_auth_provider_object_t = {"_p_p_svn_auth_provider_object_t", "struct svn_auth_provider_object_t **|svn_auth_provider_object_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_svn_client_commit_info_t = {"_p_p_svn_client_commit_info_t", "struct svn_client_commit_info_t **|svn_client_commit_info_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_svn_client_ctx_t = {"_p_p_svn_client_ctx_t", "struct svn_client_ctx_t **|svn_client_ctx_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_svn_commit_info_t = {"_p_p_svn_commit_info_t", "struct svn_commit_info_t **|svn_commit_info_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_svn_ra_session_t = {"_p_p_svn_ra_session_t", "struct svn_ra_session_t **|svn_ra_session_t **", 0, 0, 0}; static swig_type_info _swigt__p_p_svn_string_t = {"_p_p_svn_string_t", "struct svn_string_t **|svn_string_t **", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_baton_t = {"_p_svn_auth_baton_t", "struct svn_auth_baton_t *|svn_auth_baton_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_cred_simple_t = {"_p_svn_auth_cred_simple_t", "struct svn_auth_cred_simple_t *|svn_auth_cred_simple_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_cred_ssl_client_cert_pw_t = {"_p_svn_auth_cred_ssl_client_cert_pw_t", "struct svn_auth_cred_ssl_client_cert_pw_t *|svn_auth_cred_ssl_client_cert_pw_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_cred_ssl_client_cert_t = {"_p_svn_auth_cred_ssl_client_cert_t", "struct svn_auth_cred_ssl_client_cert_t *|svn_auth_cred_ssl_client_cert_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_cred_ssl_server_trust_t = {"_p_svn_auth_cred_ssl_server_trust_t", "struct svn_auth_cred_ssl_server_trust_t *|svn_auth_cred_ssl_server_trust_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_cred_username_t = {"_p_svn_auth_cred_username_t", "struct svn_auth_cred_username_t *|svn_auth_cred_username_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_iterstate_t = {"_p_svn_auth_iterstate_t", "struct svn_auth_iterstate_t *|svn_auth_iterstate_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_auth_provider_object_t = {"_p_svn_auth_provider_object_t", "struct svn_auth_provider_object_t *|svn_auth_provider_object_t *", 0, 0, 0}; 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, 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, 0}; static swig_type_info _swigt__p_svn_client_commit_info_t = {"_p_svn_client_commit_info_t", "struct svn_client_commit_info_t *|svn_client_commit_info_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_client_commit_item2_t = {"_p_svn_client_commit_item2_t", "struct svn_client_commit_item2_t *|svn_client_commit_item2_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_client_commit_item_t = {"_p_svn_client_commit_item_t", "struct svn_client_commit_item_t *|svn_client_commit_item_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_client_ctx_t = {"_p_svn_client_ctx_t", "struct svn_client_ctx_t *|svn_client_ctx_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_client_diff_summarize_kind_t = {"_p_svn_client_diff_summarize_kind_t", "enum svn_client_diff_summarize_kind_t *|svn_client_diff_summarize_kind_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_client_diff_summarize_t = {"_p_svn_client_diff_summarize_t", "struct svn_client_diff_summarize_t *|svn_client_diff_summarize_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_client_proplist_item_t = {"_p_svn_client_proplist_item_t", "struct svn_client_proplist_item_t *|svn_client_proplist_item_t *", 0, 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, 0}; static swig_type_info _swigt__p_svn_config_t = {"_p_svn_config_t", "struct svn_config_t *|svn_config_t *", 0, 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, 0}; static swig_type_info _swigt__p_svn_diff_datasource_e = {"_p_svn_diff_datasource_e", "enum svn_diff_datasource_e *|svn_diff_datasource_e *", 0, 0, 0}; static swig_type_info _swigt__p_svn_diff_file_ignore_space_t = {"_p_svn_diff_file_ignore_space_t", "enum svn_diff_file_ignore_space_t *|svn_diff_file_ignore_space_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_diff_file_options_t = {"_p_svn_diff_file_options_t", "struct svn_diff_file_options_t *|svn_diff_file_options_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_diff_fns_t = {"_p_svn_diff_fns_t", "struct svn_diff_fns_t *|svn_diff_fns_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_diff_output_fns_t = {"_p_svn_diff_output_fns_t", "struct svn_diff_output_fns_t *|svn_diff_output_fns_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_diff_t = {"_p_svn_diff_t", "struct svn_diff_t *|svn_diff_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_dirent_t = {"_p_svn_dirent_t", "struct svn_dirent_t *|svn_dirent_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_errno_t = {"_p_svn_errno_t", "enum svn_errno_t *|svn_errno_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_error_t = {"_p_svn_error_t", "struct svn_error_t *|svn_error_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_info_t = {"_p_svn_info_t", "struct svn_info_t *|svn_info_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_io_dirent_t = {"_p_svn_io_dirent_t", "struct svn_io_dirent_t *|svn_io_dirent_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_io_file_del_t = {"_p_svn_io_file_del_t", "enum svn_io_file_del_t *|svn_io_file_del_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_lock_t = {"_p_svn_lock_t", "struct svn_lock_t *|svn_lock_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_log_changed_path_t = {"_p_svn_log_changed_path_t", "struct svn_log_changed_path_t *|svn_log_changed_path_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_node_kind_t = {"_p_svn_node_kind_t", "enum svn_node_kind_t *|svn_node_kind_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_opt_revision_t = {"_p_svn_opt_revision_t", "struct svn_opt_revision_t *|svn_opt_revision_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_opt_revision_value_t = {"_p_svn_opt_revision_value_t", "union svn_opt_revision_value_t *|svn_opt_revision_value_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_opt_subcommand_desc2_t = {"_p_svn_opt_subcommand_desc2_t", "struct svn_opt_subcommand_desc2_t *|svn_opt_subcommand_desc2_t *", 0, 0, 0}; 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, 0}; static swig_type_info _swigt__p_svn_prop_kind = {"_p_svn_prop_kind", "enum svn_prop_kind *|svn_prop_kind_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_ra_callbacks2_t = {"_p_svn_ra_callbacks2_t", "struct svn_ra_callbacks2_t *|svn_ra_callbacks2_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_ra_callbacks_t = {"_p_svn_ra_callbacks_t", "struct svn_ra_callbacks_t *|svn_ra_callbacks_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_ra_plugin_t = {"_p_svn_ra_plugin_t", "struct svn_ra_plugin_t *|svn_ra_plugin_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_ra_reporter2_t = {"_p_svn_ra_reporter2_t", "struct svn_ra_reporter2_t *|svn_ra_reporter2_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_ra_reporter_t = {"_p_svn_ra_reporter_t", "struct svn_ra_reporter_t *|svn_ra_reporter_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_ra_session_t = {"_p_svn_ra_session_t", "struct svn_ra_session_t *|svn_ra_session_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_stream_t = {"_p_svn_stream_t", "struct svn_stream_t *|svn_stream_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_string_t = {"_p_svn_string_t", "struct svn_string_t *|svn_string_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_stringbuf_t = {"_p_svn_stringbuf_t", "struct svn_stringbuf_t *|svn_stringbuf_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_txdelta_op_t = {"_p_svn_txdelta_op_t", "struct svn_txdelta_op_t *|svn_txdelta_op_t *", 0, 0, 0}; 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, 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, 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, 0}; static swig_type_info _swigt__p_svn_version_t = {"_p_svn_version_t", "struct svn_version_t *|svn_version_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_adm_access_t = {"_p_svn_wc_adm_access_t", "struct svn_wc_adm_access_t *|svn_wc_adm_access_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_diff_callbacks2_t = {"_p_svn_wc_diff_callbacks2_t", "struct svn_wc_diff_callbacks2_t *|svn_wc_diff_callbacks2_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_diff_callbacks_t = {"_p_svn_wc_diff_callbacks_t", "struct svn_wc_diff_callbacks_t *|svn_wc_diff_callbacks_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_entry_callbacks_t = {"_p_svn_wc_entry_callbacks_t", "struct svn_wc_entry_callbacks_t *|svn_wc_entry_callbacks_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_entry_t = {"_p_svn_wc_entry_t", "struct svn_wc_entry_t *|svn_wc_entry_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_external_item_t = {"_p_svn_wc_external_item_t", "struct svn_wc_external_item_t *|svn_wc_external_item_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_merge_outcome_t = {"_p_svn_wc_merge_outcome_t", "enum svn_wc_merge_outcome_t *|svn_wc_merge_outcome_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_notify_action_t = {"_p_svn_wc_notify_action_t", "enum svn_wc_notify_action_t *|svn_wc_notify_action_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_notify_lock_state_t = {"_p_svn_wc_notify_lock_state_t", "enum svn_wc_notify_lock_state_t *|svn_wc_notify_lock_state_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_notify_state_t = {"_p_svn_wc_notify_state_t", "enum svn_wc_notify_state_t *|svn_wc_notify_state_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_notify_t = {"_p_svn_wc_notify_t", "struct svn_wc_notify_t *|svn_wc_notify_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_revision_status_t = {"_p_svn_wc_revision_status_t", "struct svn_wc_revision_status_t *|svn_wc_revision_status_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_schedule_t = {"_p_svn_wc_schedule_t", "enum svn_wc_schedule_t *|svn_wc_schedule_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_status2_t = {"_p_svn_wc_status2_t", "struct svn_wc_status2_t *|svn_wc_status2_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_status_t = {"_p_svn_wc_status_t", "struct svn_wc_status_t *|svn_wc_status_t *", 0, 0, 0}; static swig_type_info _swigt__p_svn_wc_traversal_info_t = {"_p_svn_wc_traversal_info_t", "struct svn_wc_traversal_info_t *|svn_wc_traversal_info_t *", 0, 0, 0}; static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, 0}; static swig_type_info _swigt__ptrdiff_t = {"_ptrdiff_t", "ptrdiff_t", 0, 0, 0}; static swig_type_info _swigt__size_t = {"_size_t", "size_t", 0, 0, 0}; static swig_type_info *swig_type_initial[] = { &_swigt__p_apr_array_header_t, &_swigt__p_apr_file_t, &_swigt__p_apr_hash_t, &_swigt__p_apr_int32_t, &_swigt__p_apr_int64_t, &_swigt__p_apr_pool_t, &_swigt__p_char, &_swigt__p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void, &_swigt__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_svn_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_svn_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_svn_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_svn_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_p_svn_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_void__p_svn_error_t, &_swigt__p_f_p_void_apr_int64_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, &_swigt__p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void, &_swigt__p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_void_p_q_const__char_p_q_const__svn_info_t_p_apr_pool_t__p_svn_error_t, &_swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void, &_swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void, &_swigt__p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void, &_swigt__p_int, &_swigt__p_long, &_swigt__p_p_apr_array_header_t, &_swigt__p_p_apr_hash_t, &_swigt__p_p_char, &_swigt__p_p_svn_auth_provider_object_t, &_swigt__p_p_svn_client_commit_info_t, &_swigt__p_p_svn_client_ctx_t, &_swigt__p_p_svn_commit_info_t, &_swigt__p_p_svn_ra_session_t, &_swigt__p_p_svn_string_t, &_swigt__p_svn_auth_baton_t, &_swigt__p_svn_auth_cred_simple_t, &_swigt__p_svn_auth_cred_ssl_client_cert_pw_t, &_swigt__p_svn_auth_cred_ssl_client_cert_t, &_swigt__p_svn_auth_cred_ssl_server_trust_t, &_swigt__p_svn_auth_cred_username_t, &_swigt__p_svn_auth_iterstate_t, &_swigt__p_svn_auth_provider_object_t, &_swigt__p_svn_auth_provider_t, &_swigt__p_svn_auth_ssl_server_cert_info_t, &_swigt__p_svn_client_commit_info_t, &_swigt__p_svn_client_commit_item2_t, &_swigt__p_svn_client_commit_item_t, &_swigt__p_svn_client_ctx_t, &_swigt__p_svn_client_diff_summarize_kind_t, &_swigt__p_svn_client_diff_summarize_t, &_swigt__p_svn_client_proplist_item_t, &_swigt__p_svn_commit_info_t, &_swigt__p_svn_config_t, &_swigt__p_svn_delta_editor_t, &_swigt__p_svn_diff_datasource_e, &_swigt__p_svn_diff_file_ignore_space_t, &_swigt__p_svn_diff_file_options_t, &_swigt__p_svn_diff_fns_t, &_swigt__p_svn_diff_output_fns_t, &_swigt__p_svn_diff_t, &_swigt__p_svn_dirent_t, &_swigt__p_svn_errno_t, &_swigt__p_svn_error_t, &_swigt__p_svn_info_t, &_swigt__p_svn_io_dirent_t, &_swigt__p_svn_io_file_del_t, &_swigt__p_svn_lock_t, &_swigt__p_svn_log_changed_path_t, &_swigt__p_svn_node_kind_t, &_swigt__p_svn_opt_revision_t, &_swigt__p_svn_opt_revision_value_t, &_swigt__p_svn_opt_subcommand_desc2_t, &_swigt__p_svn_opt_subcommand_desc_t, &_swigt__p_svn_prop_kind, &_swigt__p_svn_ra_callbacks2_t, &_swigt__p_svn_ra_callbacks_t, &_swigt__p_svn_ra_plugin_t, &_swigt__p_svn_ra_reporter2_t, &_swigt__p_svn_ra_reporter_t, &_swigt__p_svn_ra_session_t, &_swigt__p_svn_stream_t, &_swigt__p_svn_string_t, &_swigt__p_svn_stringbuf_t, &_swigt__p_svn_txdelta_op_t, &_swigt__p_svn_txdelta_stream_t, &_swigt__p_svn_txdelta_window_t, &_swigt__p_svn_version_checklist_t, &_swigt__p_svn_version_t, &_swigt__p_svn_wc_adm_access_t, &_swigt__p_svn_wc_diff_callbacks2_t, &_swigt__p_svn_wc_diff_callbacks_t, &_swigt__p_svn_wc_entry_callbacks_t, &_swigt__p_svn_wc_entry_t, &_swigt__p_svn_wc_external_item_t, &_swigt__p_svn_wc_merge_outcome_t, &_swigt__p_svn_wc_notify_action_t, &_swigt__p_svn_wc_notify_lock_state_t, &_swigt__p_svn_wc_notify_state_t, &_swigt__p_svn_wc_notify_t, &_swigt__p_svn_wc_revision_status_t, &_swigt__p_svn_wc_schedule_t, &_swigt__p_svn_wc_status2_t, &_swigt__p_svn_wc_status_t, &_swigt__p_svn_wc_traversal_info_t, &_swigt__p_void, &_swigt__ptrdiff_t, &_swigt__size_t, }; static swig_cast_info _swigc__p_apr_array_header_t[] = { {&_swigt__p_apr_array_header_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_apr_file_t[] = { {&_swigt__p_apr_file_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_apr_hash_t[] = { {&_swigt__p_apr_hash_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_apr_int32_t[] = { {&_swigt__p_apr_int32_t, 0, 0, 0},{0, 0, 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_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void[] = { {&_swigt__p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void, 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_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_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_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_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_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_svn_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_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_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_svn_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_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_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_svn_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_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_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_svn_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_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_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_p_svn_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_q_const__svn_client_diff_summarize_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_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_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_apr_int64_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_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_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void[] = { {&_swigt__p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_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_q_const__char_p_q_const__svn_info_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char_p_q_const__svn_info_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_q_const__char_p_struct_svn_wc_status2_t__void[] = { {&_swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void[] = { {&_swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void[] = { {&_swigt__p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_long[] = { {&_swigt__p_long, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_apr_array_header_t[] = { {&_swigt__p_p_apr_array_header_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_apr_hash_t[] = { {&_swigt__p_p_apr_hash_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_svn_auth_provider_object_t[] = { {&_swigt__p_p_svn_auth_provider_object_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_svn_client_commit_info_t[] = { {&_swigt__p_p_svn_client_commit_info_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_svn_client_ctx_t[] = { {&_swigt__p_p_svn_client_ctx_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_svn_commit_info_t[] = { {&_swigt__p_p_svn_commit_info_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_svn_ra_session_t[] = { {&_swigt__p_p_svn_ra_session_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_svn_string_t[] = { {&_swigt__p_p_svn_string_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_baton_t[] = { {&_swigt__p_svn_auth_baton_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_cred_simple_t[] = { {&_swigt__p_svn_auth_cred_simple_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_cred_ssl_client_cert_pw_t[] = { {&_swigt__p_svn_auth_cred_ssl_client_cert_pw_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_cred_ssl_client_cert_t[] = { {&_swigt__p_svn_auth_cred_ssl_client_cert_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_cred_ssl_server_trust_t[] = { {&_swigt__p_svn_auth_cred_ssl_server_trust_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_cred_username_t[] = { {&_swigt__p_svn_auth_cred_username_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_iterstate_t[] = { {&_swigt__p_svn_auth_iterstate_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_auth_provider_object_t[] = { {&_swigt__p_svn_auth_provider_object_t, 0, 0, 0},{0, 0, 0, 0}}; 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_client_commit_info_t[] = { {&_swigt__p_svn_client_commit_info_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_client_commit_item2_t[] = { {&_swigt__p_svn_client_commit_item2_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_client_commit_item_t[] = { {&_swigt__p_svn_client_commit_item_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_client_ctx_t[] = { {&_swigt__p_svn_client_ctx_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_client_diff_summarize_kind_t[] = { {&_swigt__p_svn_client_diff_summarize_kind_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_client_diff_summarize_t[] = { {&_swigt__p_svn_client_diff_summarize_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_client_proplist_item_t[] = { {&_swigt__p_svn_client_proplist_item_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}}; static swig_cast_info _swigc__p_svn_diff_datasource_e[] = { {&_swigt__p_svn_diff_datasource_e, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_diff_file_ignore_space_t[] = { {&_swigt__p_svn_diff_file_ignore_space_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_diff_file_options_t[] = { {&_swigt__p_svn_diff_file_options_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_diff_fns_t[] = { {&_swigt__p_svn_diff_fns_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_diff_output_fns_t[] = { {&_swigt__p_svn_diff_output_fns_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_diff_t[] = { {&_swigt__p_svn_diff_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_dirent_t[] = { {&_swigt__p_svn_dirent_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_errno_t[] = { {&_swigt__p_svn_errno_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_error_t[] = { {&_swigt__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_info_t[] = { {&_swigt__p_svn_info_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_io_dirent_t[] = { {&_swigt__p_svn_io_dirent_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_io_file_del_t[] = { {&_swigt__p_svn_io_file_del_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_lock_t[] = { {&_swigt__p_svn_lock_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_log_changed_path_t[] = { {&_swigt__p_svn_log_changed_path_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_node_kind_t[] = { {&_swigt__p_svn_node_kind_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_opt_revision_t[] = { {&_swigt__p_svn_opt_revision_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_opt_revision_value_t[] = { {&_swigt__p_svn_opt_revision_value_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_opt_subcommand_desc2_t[] = { {&_swigt__p_svn_opt_subcommand_desc2_t, 0, 0, 0},{0, 0, 0, 0}}; 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_prop_kind[] = { {&_swigt__p_svn_prop_kind, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_ra_callbacks2_t[] = { {&_swigt__p_svn_ra_callbacks2_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_ra_callbacks_t[] = { {&_swigt__p_svn_ra_callbacks_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_ra_plugin_t[] = { {&_swigt__p_svn_ra_plugin_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_ra_reporter2_t[] = { {&_swigt__p_svn_ra_reporter2_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_ra_reporter_t[] = { {&_swigt__p_svn_ra_reporter_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_ra_session_t[] = { {&_swigt__p_svn_ra_session_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_stream_t[] = { {&_swigt__p_svn_stream_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_string_t[] = { {&_swigt__p_svn_string_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_stringbuf_t[] = { {&_swigt__p_svn_stringbuf_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_txdelta_op_t[] = { {&_swigt__p_svn_txdelta_op_t, 0, 0, 0},{0, 0, 0, 0}}; 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_t[] = { {&_swigt__p_svn_version_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_adm_access_t[] = { {&_swigt__p_svn_wc_adm_access_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_diff_callbacks2_t[] = { {&_swigt__p_svn_wc_diff_callbacks2_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_diff_callbacks_t[] = { {&_swigt__p_svn_wc_diff_callbacks_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_entry_callbacks_t[] = { {&_swigt__p_svn_wc_entry_callbacks_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_entry_t[] = { {&_swigt__p_svn_wc_entry_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_external_item_t[] = { {&_swigt__p_svn_wc_external_item_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_merge_outcome_t[] = { {&_swigt__p_svn_wc_merge_outcome_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_notify_action_t[] = { {&_swigt__p_svn_wc_notify_action_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_notify_lock_state_t[] = { {&_swigt__p_svn_wc_notify_lock_state_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_notify_state_t[] = { {&_swigt__p_svn_wc_notify_state_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_notify_t[] = { {&_swigt__p_svn_wc_notify_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_revision_status_t[] = { {&_swigt__p_svn_wc_revision_status_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_schedule_t[] = { {&_swigt__p_svn_wc_schedule_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_status2_t[] = { {&_swigt__p_svn_wc_status2_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_status_t[] = { {&_swigt__p_svn_wc_status_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_svn_wc_traversal_info_t[] = { {&_swigt__p_svn_wc_traversal_info_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__ptrdiff_t[] = { {&_swigt__ptrdiff_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__size_t[] = { {&_swigt__size_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info *swig_cast_initial[] = { _swigc__p_apr_array_header_t, _swigc__p_apr_file_t, _swigc__p_apr_hash_t, _swigc__p_apr_int32_t, _swigc__p_apr_int64_t, _swigc__p_apr_pool_t, _swigc__p_char, _swigc__p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void, _swigc__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_q_const__char_p_p_q_const__char_p_apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_q_const__char_p_p_q_const__char_p_q_const__apr_array_header_t_p_void_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_svn_auth_cred_simple_t_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_svn_auth_cred_ssl_client_cert_pw_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_svn_auth_cred_ssl_client_cert_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_svn_auth_cred_ssl_server_trust_t_p_void_p_q_const__char_apr_uint32_t_p_q_const__svn_auth_ssl_server_cert_info_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_p_svn_auth_cred_username_t_p_void_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_q_const__svn_client_diff_summarize_t_p_void_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_void__p_svn_error_t, _swigc__p_f_p_void_apr_int64_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_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_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void, _swigc__p_f_p_void_p_q_const__char_p_q_const__svn_dirent_t_p_q_const__svn_lock_t_p_q_const__char_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_void_p_q_const__char_p_q_const__svn_info_t_p_apr_pool_t__p_svn_error_t, _swigc__p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void, _swigc__p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void, _swigc__p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void, _swigc__p_int, _swigc__p_long, _swigc__p_p_apr_array_header_t, _swigc__p_p_apr_hash_t, _swigc__p_p_char, _swigc__p_p_svn_auth_provider_object_t, _swigc__p_p_svn_client_commit_info_t, _swigc__p_p_svn_client_ctx_t, _swigc__p_p_svn_commit_info_t, _swigc__p_p_svn_ra_session_t, _swigc__p_p_svn_string_t, _swigc__p_svn_auth_baton_t, _swigc__p_svn_auth_cred_simple_t, _swigc__p_svn_auth_cred_ssl_client_cert_pw_t, _swigc__p_svn_auth_cred_ssl_client_cert_t, _swigc__p_svn_auth_cred_ssl_server_trust_t, _swigc__p_svn_auth_cred_username_t, _swigc__p_svn_auth_iterstate_t, _swigc__p_svn_auth_provider_object_t, _swigc__p_svn_auth_provider_t, _swigc__p_svn_auth_ssl_server_cert_info_t, _swigc__p_svn_client_commit_info_t, _swigc__p_svn_client_commit_item2_t, _swigc__p_svn_client_commit_item_t, _swigc__p_svn_client_ctx_t, _swigc__p_svn_client_diff_summarize_kind_t, _swigc__p_svn_client_diff_summarize_t, _swigc__p_svn_client_proplist_item_t, _swigc__p_svn_commit_info_t, _swigc__p_svn_config_t, _swigc__p_svn_delta_editor_t, _swigc__p_svn_diff_datasource_e, _swigc__p_svn_diff_file_ignore_space_t, _swigc__p_svn_diff_file_options_t, _swigc__p_svn_diff_fns_t, _swigc__p_svn_diff_output_fns_t, _swigc__p_svn_diff_t, _swigc__p_svn_dirent_t, _swigc__p_svn_errno_t, _swigc__p_svn_error_t, _swigc__p_svn_info_t, _swigc__p_svn_io_dirent_t, _swigc__p_svn_io_file_del_t, _swigc__p_svn_lock_t, _swigc__p_svn_log_changed_path_t, _swigc__p_svn_node_kind_t, _swigc__p_svn_opt_revision_t, _swigc__p_svn_opt_revision_value_t, _swigc__p_svn_opt_subcommand_desc2_t, _swigc__p_svn_opt_subcommand_desc_t, _swigc__p_svn_prop_kind, _swigc__p_svn_ra_callbacks2_t, _swigc__p_svn_ra_callbacks_t, _swigc__p_svn_ra_plugin_t, _swigc__p_svn_ra_reporter2_t, _swigc__p_svn_ra_reporter_t, _swigc__p_svn_ra_session_t, _swigc__p_svn_stream_t, _swigc__p_svn_string_t, _swigc__p_svn_stringbuf_t, _swigc__p_svn_txdelta_op_t, _swigc__p_svn_txdelta_stream_t, _swigc__p_svn_txdelta_window_t, _swigc__p_svn_version_checklist_t, _swigc__p_svn_version_t, _swigc__p_svn_wc_adm_access_t, _swigc__p_svn_wc_diff_callbacks2_t, _swigc__p_svn_wc_diff_callbacks_t, _swigc__p_svn_wc_entry_callbacks_t, _swigc__p_svn_wc_entry_t, _swigc__p_svn_wc_external_item_t, _swigc__p_svn_wc_merge_outcome_t, _swigc__p_svn_wc_notify_action_t, _swigc__p_svn_wc_notify_lock_state_t, _swigc__p_svn_wc_notify_state_t, _swigc__p_svn_wc_notify_t, _swigc__p_svn_wc_revision_status_t, _swigc__p_svn_wc_schedule_t, _swigc__p_svn_wc_status2_t, _swigc__p_svn_wc_status_t, _swigc__p_svn_wc_traversal_info_t, _swigc__p_void, _swigc__ptrdiff_t, _swigc__size_t, }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ static swig_const_info swig_const_table[] = { { SWIG_PY_POINTER, (char*)"SVN_CLIENT_AUTH_USERNAME", 0, 0, (void *)"username", &SWIGTYPE_p_char}, { SWIG_PY_POINTER, (char*)"SVN_CLIENT_AUTH_PASSWORD", 0, 0, (void *)"password", &SWIGTYPE_p_char}, {0, 0, 0, 0.0, 0, 0}}; #ifdef __cplusplus } #endif /************************************************************************* * Type initialization: * This problem is tough by the requirement that no dynamic * memory is used. Also, since swig_type_info structures store pointers to * swig_cast_info structures and swig_cast_info structures store pointers back * to swig_type_info structures, we need some lookup code at initialization. * The idea is that swig generates all the structures that are needed. * The runtime then collects these partially filled structures. * The SWIG_InitializeModule function takes these initial arrays out of * swig_module, and does all the lookup, filling in the swig_module.types * array with the correct data and linking the correct swig_cast_info * structures together. * The generated swig_type_info structures are assigned staticly to an initial * array. We just loop though that array, and handle each type individually. * First we lookup if this type has been already loaded, and if so, use the * loaded structure instead of the generated one. Then we have to fill in the * cast linked list. The cast data is initially stored in something like a * two-dimensional array. Each row corresponds to a type (there are the same * number of rows as there are in the swig_type_initial array). Each entry in * a column is one of the swig_cast_info structures for that type. * The cast_initial array is actually an array of arrays, because each row has * a variable number of columns. So to actually build the cast linked list, * we find the array of casts associated with the type, and loop through it * adding the casts to the list. The one last trick we need to do is making * sure the type pointer in the swig_cast_info struct is correct. * First off, we lookup the cast->type name to see if it is already loaded. * There are three cases to handle: * 1) If the cast->type has already been loaded AND the type we are adding * casting info to has not been loaded (it is in this module), THEN we * replace the cast->type pointer with the type pointer that has already * been loaded. * 2) If BOTH types (the one we are adding casting info to, and the * cast->type) are loaded, THEN the cast info has already been loaded by * the previous module so we just ignore it. * 3) Finally, if cast->type has not already been loaded, then we add that * swig_cast_info to the linked list (because the cast->type) pointer will * be correct. **/ #ifdef __cplusplus extern "C" { #endif SWIGRUNTIME void SWIG_InitializeModule(void *clientdata) { swig_type_info *type, *ret; swig_cast_info *cast; size_t i; swig_module_info *module_head; static int init_run = 0; clientdata = clientdata; if (init_run) return; init_run = 1; /* Initialize the swig_module */ swig_module.type_initial = swig_type_initial; swig_module.cast_initial = swig_cast_initial; /* Try and load any already created modules */ module_head = SWIG_GetModule(clientdata); if (module_head) { swig_module.next = module_head->next; module_head->next = &swig_module; } else { /* This is the first module loaded */ swig_module.next = &swig_module; SWIG_SetModule(clientdata, &swig_module); } /* Now work on filling in swig_module.types */ for (i = 0; i < swig_module.size; ++i) { type = 0; /* if there is another module already loaded */ if (swig_module.next != &swig_module) { type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); } if (type) { /* Overwrite clientdata field */ if (swig_module.type_initial[i]->clientdata) type->clientdata = swig_module.type_initial[i]->clientdata; } else { type = swig_module.type_initial[i]; } /* Insert casting types */ cast = swig_module.cast_initial[i]; while (cast->type) { /* Don't need to add information already in the list */ ret = 0; if (swig_module.next != &swig_module) { ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); } if (ret && type == swig_module.type_initial[i]) { cast->type = ret; ret = 0; } if (!ret) { if (type->cast) { type->cast->prev = cast; cast->next = type->cast; } type->cast = cast; } cast++; } /* Set entry in modules->types array equal to the type */ swig_module.types[i] = type; } } /* This function will propagate the clientdata field of type to * any new swig_type_info structures that have been added into the list * of equivalent types. It is like calling * SWIG_TypeClientData(type, clientdata) a second time. */ SWIGRUNTIME void SWIG_PropagateClientData(void) { size_t i; swig_cast_info *equiv; static int init_run = 0; if (init_run) return; init_run = 1; for (i = 0; i < swig_module.size; i++) { if (swig_module.types[i]->clientdata) { equiv = swig_module.types[i]->cast; while (equiv) { if (!equiv->converter) { if (equiv->type && !equiv->type->clientdata) SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); } equiv = equiv->next; } } } } #ifdef __cplusplus } #endif #ifdef __cplusplus extern "C" { #endif /* Python-specific SWIG API */ #define SWIG_newvarlink() SWIG_Python_newvarlink() #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) /* ----------------------------------------------------------------------------- * global variable support code. * ----------------------------------------------------------------------------- */ typedef struct swig_globalvar { char *name; /* Name of global variable */ PyObject *(*get_attr)(void); /* Return the current value */ int (*set_attr)(PyObject *); /* Set the value */ struct swig_globalvar *next; } swig_globalvar; typedef struct swig_varlinkobject { PyObject_HEAD swig_globalvar *vars; } swig_varlinkobject; SWIGINTERN PyObject * swig_varlink_repr(swig_varlinkobject *v) { v = v; return PyString_FromString(""); } SWIGINTERN int swig_varlink_print(swig_varlinkobject *v, FILE *fp, int flags) { swig_globalvar *var; flags = flags; fprintf(fp,"Swig global variables { "); for (var = v->vars; var; var=var->next) { fprintf(fp,"%s", var->name); if (var->next) fprintf(fp,", "); } fprintf(fp," }\n"); return 0; } SWIGINTERN PyObject * swig_varlink_getattr(swig_varlinkobject *v, char *n) { swig_globalvar *var = v->vars; while (var) { if (strcmp(var->name,n) == 0) { return (*var->get_attr)(); } var = var->next; } PyErr_SetString(PyExc_NameError,"Unknown C global variable"); return NULL; } SWIGINTERN int swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { swig_globalvar *var = v->vars; while (var) { if (strcmp(var->name,n) == 0) { return (*var->set_attr)(p); } var = var->next; } PyErr_SetString(PyExc_NameError,"Unknown C global variable"); return 1; } SWIGINTERN PyTypeObject* swig_varlink_type(void) { static char varlink__doc__[] = "Swig var link object"; static PyTypeObject varlink_type #if !defined(__cplusplus) ; static int type_init = 0; if (!type_init) { PyTypeObject tmp #endif = { PyObject_HEAD_INIT(&PyType_Type) 0, /* Number of items in variable part (ob_size) */ (char *)"swigvarlink", /* Type name (tp_name) */ sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ 0, /* Itemsize (tp_itemsize) */ 0, /* Deallocator (tp_dealloc) */ (printfunc) swig_varlink_print, /* Print (tp_print) */ (getattrfunc) swig_varlink_getattr, /* get attr (tp_getattr) */ (setattrfunc) swig_varlink_setattr, /* Set attr (tp_setattr) */ 0, /* tp_compare */ (reprfunc) swig_varlink_repr, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ 0, /* tp_hash */ 0, /* tp_call */ 0, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ 0, /* tp_flags */ varlink__doc__, /* tp_doc */ #if PY_VERSION_HEX >= 0x02000000 0, /* tp_traverse */ 0, /* tp_clear */ #endif #if PY_VERSION_HEX >= 0x02010000 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #endif #if PY_VERSION_HEX >= 0x02020000 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; #if !defined(__cplusplus) varlink_type = tmp; type_init = 1; } #endif return &varlink_type; } /* Create a variable linking object for use later */ SWIGINTERN PyObject * SWIG_Python_newvarlink(void) { swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); if (result) { result->vars = 0; } return ((PyObject*) result); } SWIGINTERN void SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { swig_varlinkobject *v = (swig_varlinkobject *) p; swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); if (gv) { size_t size = strlen(name)+1; gv->name = (char *)malloc(size); if (gv->name) { strncpy(gv->name,name,size); gv->get_attr = get_attr; gv->set_attr = set_attr; gv->next = v->vars; } } v->vars = gv; } /* ----------------------------------------------------------------------------- * constants/methods manipulation * ----------------------------------------------------------------------------- */ /* Install Constants */ SWIGINTERN void SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { PyObject *obj = 0; size_t i; for (i = 0; constants[i].type; ++i) { switch(constants[i].type) { case SWIG_PY_INT: obj = PyInt_FromLong(constants[i].lvalue); break; case SWIG_PY_FLOAT: obj = PyFloat_FromDouble(constants[i].dvalue); break; case SWIG_PY_STRING: if (constants[i].pvalue) { obj = PyString_FromString((char *) constants[i].pvalue); } else { Py_INCREF(Py_None); obj = Py_None; } break; case SWIG_PY_POINTER: obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); break; case SWIG_PY_BINARY: obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); break; default: obj = 0; break; } if (obj) { PyDict_SetItemString(d,constants[i].name,obj); Py_DECREF(obj); } } } /* -----------------------------------------------------------------------------*/ /* Fix SwigMethods to carry the callback ptrs when needed */ /* -----------------------------------------------------------------------------*/ SWIGINTERN void SWIG_Python_FixMethods(PyMethodDef *methods, swig_const_info *const_table, swig_type_info **types, swig_type_info **types_initial) { size_t i; for (i = 0; methods[i].ml_name; ++i) { char *c = methods[i].ml_doc; if (c && (c = strstr(c, "swig_ptr: "))) { int j; swig_const_info *ci = 0; char *name = c + 10; for (j = 0; const_table[j].type; ++j) { if (strncmp(const_table[j].name, name, strlen(const_table[j].name)) == 0) { ci = &(const_table[j]); break; } } if (ci) { size_t shift = (ci->ptype) - types; swig_type_info *ty = types_initial[shift]; size_t ldoc = (c - methods[i].ml_doc); size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; char *ndoc = (char*)malloc(ldoc + lptr + 10); if (ndoc) { char *buff = ndoc; void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; if (ptr) { strncpy(buff, methods[i].ml_doc, ldoc); buff += ldoc; strncpy(buff, "swig_ptr: ", 10); buff += 10; SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); methods[i].ml_doc = ndoc; } } } } } } /* -----------------------------------------------------------------------------* * Initialize type list * -----------------------------------------------------------------------------*/ #if PY_MAJOR_VERSION < 2 /* PyModule_AddObject function was introduced in Python 2.0. The following function is copied out of Python/modsupport.c in python version 2.3.4 */ SWIGINTERN int PyModule_AddObject(PyObject *m, char *name, PyObject *o) { PyObject *dict; if (!PyModule_Check(m)) { PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs module as first arg"); return -1; } if (!o) { PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs non-NULL value"); return -1; } dict = PyModule_GetDict(m); if (dict == NULL) { /* Internal error -- modules must have a dict! */ PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", PyModule_GetName(m)); return -1; } if (PyDict_SetItemString(dict, name, o)) return -1; Py_DECREF(o); return 0; } #endif #ifdef __cplusplus } #endif /* -----------------------------------------------------------------------------* * Partial Init method * -----------------------------------------------------------------------------*/ #ifdef __cplusplus extern "C" #endif SWIGEXPORT void SWIG_init(void) { static PyObject *SWIG_globals = 0; PyObject *m, *d; if (!SWIG_globals) SWIG_globals = SWIG_newvarlink(); /* Fix SwigMethods to carry the callback ptrs when needed */ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); m = Py_InitModule((char *) SWIG_name, SwigMethods); d = PyModule_GetDict(m); SWIG_InitializeModule(0); SWIG_InstallConstants(d,swig_const_table); { PyDict_SetItemString(d,"SVN_CLIENT_COMMIT_ITEM_ADD", SWIG_From_long((int)(0x01))); } { PyDict_SetItemString(d,"SVN_CLIENT_COMMIT_ITEM_DELETE", SWIG_From_long((int)(0x02))); } { PyDict_SetItemString(d,"SVN_CLIENT_COMMIT_ITEM_TEXT_MODS", SWIG_From_long((int)(0x04))); } { PyDict_SetItemString(d,"SVN_CLIENT_COMMIT_ITEM_PROP_MODS", SWIG_From_long((int)(0x08))); } { PyDict_SetItemString(d,"SVN_CLIENT_COMMIT_ITEM_IS_COPY", SWIG_From_long((int)(0x10))); } { PyDict_SetItemString(d,"SVN_CLIENT_COMMIT_ITEM_LOCK_TOKEN", SWIG_From_long((int)(0x20))); } { PyDict_SetItemString(d,"svn_client_diff_summarize_kind_normal", SWIG_From_long((int)(svn_client_diff_summarize_kind_normal))); } { PyDict_SetItemString(d,"svn_client_diff_summarize_kind_added", SWIG_From_long((int)(svn_client_diff_summarize_kind_added))); } { PyDict_SetItemString(d,"svn_client_diff_summarize_kind_modified", SWIG_From_long((int)(svn_client_diff_summarize_kind_modified))); } { PyDict_SetItemString(d,"svn_client_diff_summarize_kind_deleted", SWIG_From_long((int)(svn_client_diff_summarize_kind_deleted))); } PyDict_SetItemString(d,"SVN_CLIENT_AUTH_USERNAME", SWIG_FromCharPtr("username")); PyDict_SetItemString(d,"SVN_CLIENT_AUTH_PASSWORD", SWIG_FromCharPtr("password")); }