1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_NO_BUILD_NONE
13 /* -----------------------------------------------------------------------------
14 * This section contains generic SWIG labels for method/variable
15 * declarations/attributes, and other compiler dependent labels.
16 * ----------------------------------------------------------------------------- */
18 /* template workaround for compilers that cannot correctly implement the C++ standard */
19 #ifndef SWIGTEMPLATEDISAMBIGUATOR
20 # if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
21 # define SWIGTEMPLATEDISAMBIGUATOR template
22 # elif defined(__HP_aCC)
23 /* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
24 /* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
25 # define SWIGTEMPLATEDISAMBIGUATOR template
27 # define SWIGTEMPLATEDISAMBIGUATOR
31 /* inline attribute */
33 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
34 # define SWIGINLINE inline
40 /* attribute recognised by some compilers to avoid 'unused' warnings */
42 # if defined(__GNUC__)
43 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
44 # define SWIGUNUSED __attribute__ ((__unused__))
49 # define SWIGUNUSED __attribute__ ((__unused__))
55 #ifndef SWIGUNUSEDPARM
57 # define SWIGUNUSEDPARM(p)
59 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
63 /* internal SWIG method */
65 # define SWIGINTERN static SWIGUNUSED
68 /* internal inline SWIG method */
69 #ifndef SWIGINTERNINLINE
70 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
73 /* exporting methods */
74 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
75 # ifndef GCC_HASCLASSVISIBILITY
76 # define GCC_HASCLASSVISIBILITY
81 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
82 # if defined(STATIC_LINKED)
85 # define SWIGEXPORT __declspec(dllexport)
88 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
89 # define SWIGEXPORT __attribute__ ((visibility("default")))
96 /* calling conventions for Windows */
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # define SWIGSTDCALL __stdcall
105 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
106 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
107 # define _CRT_SECURE_NO_DEPRECATE
110 /* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
111 #if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
112 # define _SCL_SECURE_NO_DEPRECATE
117 /* Python.h has to appear first */
120 /* -----------------------------------------------------------------------------
123 * This file contains generic CAPI SWIG runtime support for pointer
125 * ----------------------------------------------------------------------------- */
127 /* This should only be incremented when either the layout of swig_type_info changes,
128 or for whatever reason, the runtime changes incompatibly */
129 #define SWIG_RUNTIME_VERSION "3"
131 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
132 #ifdef SWIG_TYPE_TABLE
133 # define SWIG_QUOTE_STRING(x) #x
134 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
135 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
137 # define SWIG_TYPE_TABLE_NAME
141 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
142 creating a static or dynamic library from the swig runtime code.
143 In 99.9% of the cases, swig just needs to declare them as 'static'.
145 But only do this if is strictly necessary, ie, if you have problems
146 with your compiler or so.
150 # define SWIGRUNTIME SWIGINTERN
153 #ifndef SWIGRUNTIMEINLINE
154 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
157 /* Generic buffer size */
158 #ifndef SWIG_BUFFER_SIZE
159 # define SWIG_BUFFER_SIZE 1024
162 /* Flags for pointer conversions */
163 #define SWIG_POINTER_DISOWN 0x1
165 /* Flags for new pointer objects */
166 #define SWIG_POINTER_OWN 0x1
170 Flags/methods for returning states.
172 The swig conversion methods, as ConvertPtr, return and integer
173 that tells if the conversion was successful or not. And if not,
174 an error code can be returned (see swigerrors.swg for the codes).
176 Use the following macros/flags to set or process the returning
179 In old swig versions, you usually write code as:
181 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
187 Now you can be more explicit as:
189 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
190 if (SWIG_IsOK(res)) {
196 that seems to be the same, but now you can also do
199 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
200 if (SWIG_IsOK(res)) {
202 if (SWIG_IsNewObj(res) {
212 I.e., now SWIG_ConvertPtr can return new objects and you can
213 identify the case and take care of the deallocation. Of course that
214 requires also to SWIG_ConvertPtr to return new result values, as
216 int SWIG_ConvertPtr(obj, ptr,...) {
218 if (<need new object>) {
219 *ptr = <ptr to new allocated object>;
222 *ptr = <ptr to old object>;
230 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
231 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
234 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
235 allows to return the 'cast rank', for example, if you have this
242 food(1) // cast rank '1' (1 -> 1.0)
243 fooi(1) // cast rank '0'
245 just use the SWIG_AddCast()/SWIG_CheckState()
250 #define SWIG_ERROR (-1)
251 #define SWIG_IsOK(r) (r >= 0)
252 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
254 /* The CastRankLimit says how many bits are used for the cast rank */
255 #define SWIG_CASTRANKLIMIT (1 << 8)
256 /* The NewMask denotes the object was created (using new/malloc) */
257 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
258 /* The TmpMask is for in/out typemaps that use temporal objects */
259 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
260 /* Simple returning values */
261 #define SWIG_BADOBJ (SWIG_ERROR)
262 #define SWIG_OLDOBJ (SWIG_OK)
263 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
264 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
265 /* Check, add and del mask methods */
266 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
267 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
268 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
269 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
270 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
271 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
275 #if defined(SWIG_CASTRANK_MODE)
276 # ifndef SWIG_TypeRank
277 # define SWIG_TypeRank unsigned long
279 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
280 # define SWIG_MAXCASTRANK (2)
282 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
283 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
284 SWIGINTERNINLINE int SWIG_AddCast(int r) {
285 return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
287 SWIGINTERNINLINE int SWIG_CheckState(int r) {
288 return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
290 #else /* no cast-rank mode */
291 # define SWIG_AddCast
292 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
304 typedef void *(*swig_converter_func)(void *);
305 typedef struct swig_type_info *(*swig_dycast_func)(void **);
307 /* Structure to store inforomation on one type */
308 typedef struct swig_type_info {
309 const char *name; /* mangled name of this type */
310 const char *str; /* human readable name of this type */
311 swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
312 struct swig_cast_info *cast; /* linked list of types that can cast into this type */
313 void *clientdata; /* language specific type data */
314 int owndata; /* flag if the structure owns the clientdata */
317 /* Structure to store a type and conversion function used for casting */
318 typedef struct swig_cast_info {
319 swig_type_info *type; /* pointer to type that is equivalent to this type */
320 swig_converter_func converter; /* function to cast the void pointers */
321 struct swig_cast_info *next; /* pointer to next cast in linked list */
322 struct swig_cast_info *prev; /* pointer to the previous cast */
325 /* Structure used to store module information
326 * Each module generates one structure like this, and the runtime collects
327 * all of these structures and stores them in a circularly linked list.*/
328 typedef struct swig_module_info {
329 swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
330 size_t size; /* Number of types in this module */
331 struct swig_module_info *next; /* Pointer to next element in circularly linked list */
332 swig_type_info **type_initial; /* Array of initially generated type structures */
333 swig_cast_info **cast_initial; /* Array of initially generated casting structures */
334 void *clientdata; /* Language specific module data */
338 Compare two type names skipping the space characters, therefore
339 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
341 Return 0 when the two name types are equivalent, as in
342 strncmp, but skipping ' '.
345 SWIG_TypeNameComp(const char *f1, const char *l1,
346 const char *f2, const char *l2) {
347 for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
348 while ((*f1 == ' ') && (f1 != l1)) ++f1;
349 while ((*f2 == ' ') && (f2 != l2)) ++f2;
350 if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
352 return (int)((l1 - f1) - (l2 - f2));
356 Check type equivalence in a name list like <name1>|<name2>|...
357 Return 0 if not equal, 1 if equal
360 SWIG_TypeEquiv(const char *nb, const char *tb) {
362 const char* te = tb + strlen(tb);
364 while (!equiv && *ne) {
365 for (nb = ne; *ne; ++ne) {
366 if (*ne == '|') break;
368 equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0;
375 Check type equivalence in a name list like <name1>|<name2>|...
376 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
379 SWIG_TypeCompare(const char *nb, const char *tb) {
381 const char* te = tb + strlen(tb);
383 while (!equiv && *ne) {
384 for (nb = ne; *ne; ++ne) {
385 if (*ne == '|') break;
387 equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0;
394 /* think of this as a c++ template<> or a scheme macro */
395 #define SWIG_TypeCheck_Template(comparison, ty) \
397 swig_cast_info *iter = ty->cast; \
400 if (iter == ty->cast) return iter; \
401 /* Move iter to the top of the linked list */ \
402 iter->prev->next = iter->next; \
404 iter->next->prev = iter->prev; \
405 iter->next = ty->cast; \
407 if (ty->cast) ty->cast->prev = iter; \
419 SWIGRUNTIME swig_cast_info *
420 SWIG_TypeCheck(const char *c, swig_type_info *ty) {
421 SWIG_TypeCheck_Template(strcmp(iter->type->name, c) == 0, ty);
424 /* Same as previous function, except strcmp is replaced with a pointer comparison */
425 SWIGRUNTIME swig_cast_info *
426 SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *into) {
427 SWIG_TypeCheck_Template(iter->type == from, into);
431 Cast a pointer up an inheritance hierarchy
433 SWIGRUNTIMEINLINE void *
434 SWIG_TypeCast(swig_cast_info *ty, void *ptr) {
435 return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr);
439 Dynamic pointer casting. Down an inheritance hierarchy
441 SWIGRUNTIME swig_type_info *
442 SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
443 swig_type_info *lastty = ty;
444 if (!ty || !ty->dcast) return ty;
445 while (ty && (ty->dcast)) {
446 ty = (*ty->dcast)(ptr);
453 Return the name associated with this type
455 SWIGRUNTIMEINLINE const char *
456 SWIG_TypeName(const swig_type_info *ty) {
461 Return the pretty name associated with this type,
462 that is an unmangled type name in a form presentable to the user.
464 SWIGRUNTIME const char *
465 SWIG_TypePrettyName(const swig_type_info *type) {
466 /* The "str" field contains the equivalent pretty names of the
467 type, separated by vertical-bar characters. We choose
468 to print the last name, as it is often (?) the most
470 if (!type) return NULL;
471 if (type->str != NULL) {
472 const char *last_name = type->str;
474 for (s = type->str; *s; s++)
475 if (*s == '|') last_name = s+1;
483 Set the clientdata field for a type
486 SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
487 swig_cast_info *cast = ti->cast;
488 /* if (ti->clientdata == clientdata) return; */
489 ti->clientdata = clientdata;
492 if (!cast->converter) {
493 swig_type_info *tc = cast->type;
494 if (!tc->clientdata) {
495 SWIG_TypeClientData(tc, clientdata);
502 SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
503 SWIG_TypeClientData(ti, clientdata);
508 Search for a swig_type_info structure only by mangled name
509 Search is a O(log #types)
511 We start searching at module start, and finish searching when start == end.
512 Note: if start == end at the beginning of the function, we go all the way around
515 SWIGRUNTIME swig_type_info *
516 SWIG_MangledTypeQueryModule(swig_module_info *start,
517 swig_module_info *end,
519 swig_module_info *iter = start;
522 register size_t l = 0;
523 register size_t r = iter->size - 1;
525 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
526 register size_t i = (l + r) >> 1;
527 const char *iname = iter->types[i]->name;
529 register int compare = strcmp(name, iname);
531 return iter->types[i];
532 } else if (compare < 0) {
538 } else if (compare > 0) {
542 break; /* should never happen */
547 } while (iter != end);
552 Search for a swig_type_info structure for either a mangled name or a human readable name.
553 It first searches the mangled names of the types, which is a O(log #types)
554 If a type is not found it then searches the human readable names, which is O(#types).
556 We start searching at module start, and finish searching when start == end.
557 Note: if start == end at the beginning of the function, we go all the way around
560 SWIGRUNTIME swig_type_info *
561 SWIG_TypeQueryModule(swig_module_info *start,
562 swig_module_info *end,
564 /* STEP 1: Search the name field using binary search */
565 swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
569 /* STEP 2: If the type hasn't been found, do a complete search
570 of the str field (the human readable name) */
571 swig_module_info *iter = start;
573 register size_t i = 0;
574 for (; i < iter->size; ++i) {
575 if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
576 return iter->types[i];
579 } while (iter != end);
582 /* neither found a match */
587 Pack binary data into a string
590 SWIG_PackData(char *c, void *ptr, size_t sz) {
591 static const char hex[17] = "0123456789abcdef";
592 register const unsigned char *u = (unsigned char *) ptr;
593 register const unsigned char *eu = u + sz;
594 for (; u != eu; ++u) {
595 register unsigned char uu = *u;
596 *(c++) = hex[(uu & 0xf0) >> 4];
597 *(c++) = hex[uu & 0xf];
603 Unpack binary data from a string
605 SWIGRUNTIME const char *
606 SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
607 register unsigned char *u = (unsigned char *) ptr;
608 register const unsigned char *eu = u + sz;
609 for (; u != eu; ++u) {
610 register char d = *(c++);
611 register unsigned char uu;
612 if ((d >= '0') && (d <= '9'))
613 uu = ((d - '0') << 4);
614 else if ((d >= 'a') && (d <= 'f'))
615 uu = ((d - ('a'-10)) << 4);
619 if ((d >= '0') && (d <= '9'))
621 else if ((d >= 'a') && (d <= 'f'))
622 uu |= (d - ('a'-10));
631 Pack 'void *' into a string buffer.
634 SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
636 if ((2*sizeof(void *) + 2) > bsz) return 0;
638 r = SWIG_PackData(r,&ptr,sizeof(void *));
639 if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
644 SWIGRUNTIME const char *
645 SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
647 if (strcmp(c,"NULL") == 0) {
654 return SWIG_UnpackData(++c,ptr,sizeof(void *));
658 SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
660 size_t lname = (name ? strlen(name) : 0);
661 if ((2*sz + 2 + lname) > bsz) return 0;
663 r = SWIG_PackData(r,ptr,sz);
665 strncpy(r,name,lname+1);
672 SWIGRUNTIME const char *
673 SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
675 if (strcmp(c,"NULL") == 0) {
682 return SWIG_UnpackData(++c,ptr,sz);
690 #define SWIG_UnknownError -1
691 #define SWIG_IOError -2
692 #define SWIG_RuntimeError -3
693 #define SWIG_IndexError -4
694 #define SWIG_TypeError -5
695 #define SWIG_DivisionByZero -6
696 #define SWIG_OverflowError -7
697 #define SWIG_SyntaxError -8
698 #define SWIG_ValueError -9
699 #define SWIG_SystemError -10
700 #define SWIG_AttributeError -11
701 #define SWIG_MemoryError -12
702 #define SWIG_NullReferenceError -13
707 /* Add PyOS_snprintf for old Pythons */
708 #if PY_VERSION_HEX < 0x02020000
709 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
710 # define PyOS_snprintf _snprintf
712 # define PyOS_snprintf snprintf
716 /* A crude PyString_FromFormat implementation for old Pythons */
717 #if PY_VERSION_HEX < 0x02020000
719 #ifndef SWIG_PYBUFFER_SIZE
720 # define SWIG_PYBUFFER_SIZE 1024
724 PyString_FromFormat(const char *fmt, ...) {
726 char buf[SWIG_PYBUFFER_SIZE * 2];
729 res = vsnprintf(buf, sizeof(buf), fmt, ap);
731 return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf);
735 /* Add PyObject_Del for old Pythons */
736 #if PY_VERSION_HEX < 0x01060000
737 # define PyObject_Del(op) PyMem_DEL((op))
740 # define PyObject_DEL PyObject_Del
743 /* A crude PyExc_StopIteration exception for old Pythons */
744 #if PY_VERSION_HEX < 0x02020000
745 # ifndef PyExc_StopIteration
746 # define PyExc_StopIteration PyExc_RuntimeError
748 # ifndef PyObject_GenericGetAttr
749 # define PyObject_GenericGetAttr 0
752 /* Py_NotImplemented is defined in 2.1 and up. */
753 #if PY_VERSION_HEX < 0x02010000
754 # ifndef Py_NotImplemented
755 # define Py_NotImplemented PyExc_RuntimeError
760 /* A crude PyString_AsStringAndSize implementation for old Pythons */
761 #if PY_VERSION_HEX < 0x02010000
762 # ifndef PyString_AsStringAndSize
763 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
767 /* PySequence_Size for old Pythons */
768 #if PY_VERSION_HEX < 0x02000000
769 # ifndef PySequence_Size
770 # define PySequence_Size PySequence_Length
775 /* PyBool_FromLong for old Pythons */
776 #if PY_VERSION_HEX < 0x02030000
778 PyObject *PyBool_FromLong(long ok)
780 PyObject *result = ok ? Py_True : Py_False;
786 /* Py_ssize_t for old Pythons */
787 /* This code is as recommended by: */
788 /* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */
789 #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
790 typedef int Py_ssize_t;
791 # define PY_SSIZE_T_MAX INT_MAX
792 # define PY_SSIZE_T_MIN INT_MIN
795 /* -----------------------------------------------------------------------------
797 * ----------------------------------------------------------------------------- */
799 SWIGRUNTIME PyObject*
800 SWIG_Python_ErrorType(int code) {
803 case SWIG_MemoryError:
804 type = PyExc_MemoryError;
807 type = PyExc_IOError;
809 case SWIG_RuntimeError:
810 type = PyExc_RuntimeError;
812 case SWIG_IndexError:
813 type = PyExc_IndexError;
816 type = PyExc_TypeError;
818 case SWIG_DivisionByZero:
819 type = PyExc_ZeroDivisionError;
821 case SWIG_OverflowError:
822 type = PyExc_OverflowError;
824 case SWIG_SyntaxError:
825 type = PyExc_SyntaxError;
827 case SWIG_ValueError:
828 type = PyExc_ValueError;
830 case SWIG_SystemError:
831 type = PyExc_SystemError;
833 case SWIG_AttributeError:
834 type = PyExc_AttributeError;
837 type = PyExc_RuntimeError;
844 SWIG_Python_AddErrorMsg(const char* mesg)
848 PyObject *traceback = 0;
850 if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback);
852 PyObject *old_str = PyObject_Str(value);
855 PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg);
859 PyErr_Format(PyExc_RuntimeError, mesg);
865 #if defined(SWIG_PYTHON_NO_THREADS)
866 # if defined(SWIG_PYTHON_THREADS)
867 # undef SWIG_PYTHON_THREADS
870 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
871 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
872 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
873 # define SWIG_PYTHON_USE_GIL
876 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
877 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
878 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
880 # ifdef __cplusplus /* C++ code */
881 class SWIG_Python_Thread_Block {
883 PyGILState_STATE state;
885 void end() { if (status) { PyGILState_Release(state); status = false;} }
886 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
887 ~SWIG_Python_Thread_Block() { end(); }
889 class SWIG_Python_Thread_Allow {
893 void end() { if (status) { PyEval_RestoreThread(save); status = false; }}
894 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
895 ~SWIG_Python_Thread_Allow() { end(); }
897 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
898 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
899 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
900 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
903 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
905 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
907 # else /* Old thread way, not implemented, user must provide it */
908 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
909 # define SWIG_PYTHON_INITIALIZE_THREADS
911 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
912 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
914 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
915 # define SWIG_PYTHON_THREAD_END_BLOCK
917 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
918 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
920 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
921 # define SWIG_PYTHON_THREAD_END_ALLOW
924 #else /* No thread support */
925 # define SWIG_PYTHON_INITIALIZE_THREADS
926 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
927 # define SWIG_PYTHON_THREAD_END_BLOCK
928 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
929 # define SWIG_PYTHON_THREAD_END_ALLOW
932 /* -----------------------------------------------------------------------------
933 * Python API portion that goes into the runtime
934 * ----------------------------------------------------------------------------- */
943 /* -----------------------------------------------------------------------------
944 * Constant declarations
945 * ----------------------------------------------------------------------------- */
948 #define SWIG_PY_POINTER 4
949 #define SWIG_PY_BINARY 5
951 /* Constant information structure */
952 typedef struct swig_const_info {
958 swig_type_info **ptype;
969 /* -----------------------------------------------------------------------------
970 * See the LICENSE file for information on copyright, usage and redistribution
971 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
975 * This file contains the runtime support for Python modules
976 * and includes code for managing global variables and pointer
979 * ----------------------------------------------------------------------------- */
981 /* Common SWIG API */
983 /* for raw pointers */
984 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
985 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
986 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
987 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
988 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
989 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
990 #define swig_owntype int
992 /* for raw packed data */
993 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
994 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
996 /* for class or struct pointers */
997 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
998 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1000 /* for C or C++ function pointers */
1001 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1002 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1004 /* for C++ member pointers, ie, member methods */
1005 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1006 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1011 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1012 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1013 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1015 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1016 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1017 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1018 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1019 #define SWIG_fail goto fail
1022 /* Runtime API implementation */
1024 /* Error manipulation */
1027 SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {
1028 SWIG_PYTHON_THREAD_BEGIN_BLOCK;
1029 PyErr_SetObject(errtype, obj);
1031 SWIG_PYTHON_THREAD_END_BLOCK;
1035 SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {
1036 SWIG_PYTHON_THREAD_BEGIN_BLOCK;
1037 PyErr_SetString(errtype, (char *) msg);
1038 SWIG_PYTHON_THREAD_END_BLOCK;
1041 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1043 /* Set a constant value */
1046 SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) {
1047 PyDict_SetItemString(d, (char*) name, obj);
1051 /* Append a value to the result obj */
1053 SWIGINTERN PyObject*
1054 SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {
1055 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1058 } else if (result == Py_None) {
1062 if (!PyList_Check(result)) {
1063 PyObject *o2 = result;
1064 result = PyList_New(1);
1065 PyList_SetItem(result, 0, o2);
1067 PyList_Append(result,obj);
1076 } else if (result == Py_None) {
1080 if (!PyTuple_Check(result)) {
1082 result = PyTuple_New(1);
1083 PyTuple_SET_ITEM(result, 0, o2);
1085 o3 = PyTuple_New(1);
1086 PyTuple_SET_ITEM(o3, 0, obj);
1088 result = PySequence_Concat(o2, o3);
1096 /* Unpack the argument tuple */
1099 SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
1105 PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none",
1106 name, (min == max ? "" : "at least "), (int)min);
1110 if (!PyTuple_Check(args)) {
1111 PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
1114 register Py_ssize_t l = PyTuple_GET_SIZE(args);
1116 PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
1117 name, (min == max ? "" : "at least "), (int)min, (int)l);
1119 } else if (l > max) {
1120 PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
1121 name, (min == max ? "" : "at most "), (int)max, (int)l);
1125 for (i = 0; i < l; ++i) {
1126 objs[i] = PyTuple_GET_ITEM(args, i);
1128 for (; l < max; ++l) {
1136 /* A functor is a function object with one single object argument */
1137 #if PY_VERSION_HEX >= 0x02020000
1138 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1140 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1144 Helper for static pointer initialization for both C and C++ code, for example
1145 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1148 #define SWIG_STATIC_POINTER(var) var
1150 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1153 /* -----------------------------------------------------------------------------
1154 * Pointer declarations
1155 * ----------------------------------------------------------------------------- */
1157 /* Flags for new pointer objects */
1158 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1159 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1161 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1170 /* How to access Py_None */
1171 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1172 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1173 # ifndef SWIG_PYTHON_BUILD_NONE
1174 # define SWIG_PYTHON_BUILD_NONE
1179 #ifdef SWIG_PYTHON_BUILD_NONE
1182 # define Py_None SWIG_Py_None()
1184 SWIGRUNTIMEINLINE PyObject *
1187 PyObject *none = Py_BuildValue((char*)"");
1191 SWIGRUNTIME PyObject *
1194 static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None();
1199 /* The python void return value */
1201 SWIGRUNTIMEINLINE PyObject *
1204 PyObject *none = Py_None;
1209 /* PySwigClientData */
1220 SWIGRUNTIMEINLINE int
1221 SWIG_Python_CheckImplicit(swig_type_info *ty)
1223 PySwigClientData *data = (PySwigClientData *)ty->clientdata;
1224 return data ? data->implicitconv : 0;
1227 SWIGRUNTIMEINLINE PyObject *
1228 SWIG_Python_ExceptionType(swig_type_info *desc) {
1229 PySwigClientData *data = desc ? (PySwigClientData *) desc->clientdata : 0;
1230 PyObject *klass = data ? data->klass : 0;
1231 return (klass ? klass : PyExc_RuntimeError);
1235 SWIGRUNTIME PySwigClientData *
1236 PySwigClientData_New(PyObject* obj)
1241 PySwigClientData *data = (PySwigClientData *)malloc(sizeof(PySwigClientData));
1242 /* the klass element */
1244 Py_INCREF(data->klass);
1245 /* the newraw method and newargs arguments used to create a new raw instance */
1246 if (PyClass_Check(obj)) {
1248 data->newargs = obj;
1251 #if (PY_VERSION_HEX < 0x02020000)
1254 data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__");
1257 Py_INCREF(data->newraw);
1258 data->newargs = PyTuple_New(1);
1259 PyTuple_SetItem(data->newargs, 0, obj);
1261 data->newargs = obj;
1263 Py_INCREF(data->newargs);
1265 /* the destroy method, aka as the C++ delete method */
1266 data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__");
1267 if (PyErr_Occurred()) {
1271 if (data->destroy) {
1273 Py_INCREF(data->destroy);
1274 flags = PyCFunction_GET_FLAGS(data->destroy);
1276 data->delargs = !(flags & (METH_O));
1283 data->implicitconv = 0;
1289 PySwigClientData_Del(PySwigClientData* data)
1291 Py_XDECREF(data->newraw);
1292 Py_XDECREF(data->newargs);
1293 Py_XDECREF(data->destroy);
1296 /* =============== PySwigObject =====================*/
1306 SWIGRUNTIME PyObject *
1307 PySwigObject_long(PySwigObject *v)
1309 return PyLong_FromVoidPtr(v->ptr);
1312 SWIGRUNTIME PyObject *
1313 PySwigObject_format(const char* fmt, PySwigObject *v)
1315 PyObject *res = NULL;
1316 PyObject *args = PyTuple_New(1);
1318 if (PyTuple_SetItem(args, 0, PySwigObject_long(v)) == 0) {
1319 PyObject *ofmt = PyString_FromString(fmt);
1321 res = PyString_Format(ofmt,args);
1330 SWIGRUNTIME PyObject *
1331 PySwigObject_oct(PySwigObject *v)
1333 return PySwigObject_format("%o",v);
1336 SWIGRUNTIME PyObject *
1337 PySwigObject_hex(PySwigObject *v)
1339 return PySwigObject_format("%x",v);
1342 SWIGRUNTIME PyObject *
1344 PySwigObject_repr(PySwigObject *v)
1346 PySwigObject_repr(PySwigObject *v, PyObject *args)
1349 const char *name = SWIG_TypePrettyName(v->ty);
1350 PyObject *hex = PySwigObject_hex(v);
1351 PyObject *repr = PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name, PyString_AsString(hex));
1355 PyObject *nrep = PySwigObject_repr((PySwigObject *)v->next);
1357 PyObject *nrep = PySwigObject_repr((PySwigObject *)v->next, args);
1359 PyString_ConcatAndDel(&repr,nrep);
1365 PySwigObject_print(PySwigObject *v, FILE *fp, int SWIGUNUSEDPARM(flags))
1368 PyObject *repr = PySwigObject_repr(v);
1370 PyObject *repr = PySwigObject_repr(v, NULL);
1373 fputs(PyString_AsString(repr), fp);
1381 SWIGRUNTIME PyObject *
1382 PySwigObject_str(PySwigObject *v)
1384 char result[SWIG_BUFFER_SIZE];
1385 return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ?
1386 PyString_FromString(result) : 0;
1390 PySwigObject_compare(PySwigObject *v, PySwigObject *w)
1394 return (i < j) ? -1 : ((i > j) ? 1 : 0);
1397 SWIGRUNTIME PyTypeObject* _PySwigObject_type(void);
1399 SWIGRUNTIME PyTypeObject*
1400 PySwigObject_type(void) {
1401 static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type();
1405 SWIGRUNTIMEINLINE int
1406 PySwigObject_Check(PyObject *op) {
1407 return ((op)->ob_type == PySwigObject_type())
1408 || (strcmp((op)->ob_type->tp_name,"PySwigObject") == 0);
1411 SWIGRUNTIME PyObject *
1412 PySwigObject_New(void *ptr, swig_type_info *ty, int own);
1415 PySwigObject_dealloc(PyObject *v)
1417 PySwigObject *sobj = (PySwigObject *) v;
1418 PyObject *next = sobj->next;
1420 swig_type_info *ty = sobj->ty;
1421 PySwigClientData *data = ty ? (PySwigClientData *) ty->clientdata : 0;
1422 PyObject *destroy = data ? data->destroy : 0;
1424 /* destroy is always a VARARGS method */
1426 if (data->delargs) {
1427 /* we need to create a temporal object to carry the destroy operation */
1428 PyObject *tmp = PySwigObject_New(sobj->ptr, ty, 0);
1429 res = SWIG_Python_CallFunctor(destroy, tmp);
1432 PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
1433 PyObject *mself = PyCFunction_GET_SELF(destroy);
1434 res = ((*meth)(mself, v));
1438 const char *name = SWIG_TypePrettyName(ty);
1439 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1440 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name);
1448 SWIGRUNTIME PyObject*
1449 PySwigObject_append(PyObject* v, PyObject* next)
1451 PySwigObject *sobj = (PySwigObject *) v;
1454 if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL;
1457 if (!PySwigObject_Check(next)) {
1462 return SWIG_Py_Void();
1465 SWIGRUNTIME PyObject*
1467 PySwigObject_next(PyObject* v)
1469 PySwigObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
1472 PySwigObject *sobj = (PySwigObject *) v;
1474 Py_INCREF(sobj->next);
1477 return SWIG_Py_Void();
1481 SWIGINTERN PyObject*
1483 PySwigObject_disown(PyObject *v)
1485 PySwigObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
1488 PySwigObject *sobj = (PySwigObject *)v;
1490 return SWIG_Py_Void();
1493 SWIGINTERN PyObject*
1495 PySwigObject_acquire(PyObject *v)
1497 PySwigObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
1500 PySwigObject *sobj = (PySwigObject *)v;
1501 sobj->own = SWIG_POINTER_OWN;
1502 return SWIG_Py_Void();
1505 SWIGINTERN PyObject*
1506 PySwigObject_own(PyObject *v, PyObject *args)
1509 #if (PY_VERSION_HEX < 0x02020000)
1510 if (!PyArg_ParseTuple(args,(char *)"|O:own",&val))
1512 if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val))
1519 PySwigObject *sobj = (PySwigObject *)v;
1520 PyObject *obj = PyBool_FromLong(sobj->own);
1523 if (PyObject_IsTrue(val)) {
1524 PySwigObject_acquire(v);
1526 PySwigObject_disown(v);
1529 if (PyObject_IsTrue(val)) {
1530 PySwigObject_acquire(v,args);
1532 PySwigObject_disown(v,args);
1542 swigobject_methods[] = {
1543 {(char *)"disown", (PyCFunction)PySwigObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"},
1544 {(char *)"acquire", (PyCFunction)PySwigObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"},
1545 {(char *)"own", (PyCFunction)PySwigObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
1546 {(char *)"append", (PyCFunction)PySwigObject_append, METH_O, (char *)"appends another 'this' object"},
1547 {(char *)"next", (PyCFunction)PySwigObject_next, METH_NOARGS, (char *)"returns the next 'this' object"},
1548 {(char *)"__repr__",(PyCFunction)PySwigObject_repr, METH_NOARGS, (char *)"returns object representation"},
1553 swigobject_methods[] = {
1554 {(char *)"disown", (PyCFunction)PySwigObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"},
1555 {(char *)"acquire", (PyCFunction)PySwigObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"},
1556 {(char *)"own", (PyCFunction)PySwigObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
1557 {(char *)"append", (PyCFunction)PySwigObject_append, METH_VARARGS, (char *)"appends another 'this' object"},
1558 {(char *)"next", (PyCFunction)PySwigObject_next, METH_VARARGS, (char *)"returns the next 'this' object"},
1559 {(char *)"__repr__",(PyCFunction)PySwigObject_repr, METH_VARARGS, (char *)"returns object representation"},
1564 #if PY_VERSION_HEX < 0x02020000
1565 SWIGINTERN PyObject *
1566 PySwigObject_getattr(PySwigObject *sobj,char *name)
1568 return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name);
1572 SWIGRUNTIME PyTypeObject*
1573 _PySwigObject_type(void) {
1574 static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer";
1576 static PyNumberMethods PySwigObject_as_number = {
1577 (binaryfunc)0, /*nb_add*/
1578 (binaryfunc)0, /*nb_subtract*/
1579 (binaryfunc)0, /*nb_multiply*/
1580 (binaryfunc)0, /*nb_divide*/
1581 (binaryfunc)0, /*nb_remainder*/
1582 (binaryfunc)0, /*nb_divmod*/
1583 (ternaryfunc)0,/*nb_power*/
1584 (unaryfunc)0, /*nb_negative*/
1585 (unaryfunc)0, /*nb_positive*/
1586 (unaryfunc)0, /*nb_absolute*/
1587 (inquiry)0, /*nb_nonzero*/
1594 (coercion)0, /*nb_coerce*/
1595 (unaryfunc)PySwigObject_long, /*nb_int*/
1596 (unaryfunc)PySwigObject_long, /*nb_long*/
1597 (unaryfunc)0, /*nb_float*/
1598 (unaryfunc)PySwigObject_oct, /*nb_oct*/
1599 (unaryfunc)PySwigObject_hex, /*nb_hex*/
1600 #if PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */
1601 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */
1602 #elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */
1603 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1604 #elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */
1605 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1609 static PyTypeObject pyswigobject_type;
1610 static int type_init = 0;
1612 const PyTypeObject tmp
1614 PyObject_HEAD_INIT(NULL)
1616 (char *)"PySwigObject", /* tp_name */
1617 sizeof(PySwigObject), /* tp_basicsize */
1618 0, /* tp_itemsize */
1619 (destructor)PySwigObject_dealloc, /* tp_dealloc */
1620 (printfunc)PySwigObject_print, /* tp_print */
1621 #if PY_VERSION_HEX < 0x02020000
1622 (getattrfunc)PySwigObject_getattr, /* tp_getattr */
1624 (getattrfunc)0, /* tp_getattr */
1626 (setattrfunc)0, /* tp_setattr */
1627 (cmpfunc)PySwigObject_compare, /* tp_compare */
1628 (reprfunc)PySwigObject_repr, /* tp_repr */
1629 &PySwigObject_as_number, /* tp_as_number */
1630 0, /* tp_as_sequence */
1631 0, /* tp_as_mapping */
1632 (hashfunc)0, /* tp_hash */
1633 (ternaryfunc)0, /* tp_call */
1634 (reprfunc)PySwigObject_str, /* tp_str */
1635 PyObject_GenericGetAttr, /* tp_getattro */
1636 0, /* tp_setattro */
1637 0, /* tp_as_buffer */
1638 Py_TPFLAGS_DEFAULT, /* tp_flags */
1639 swigobject_doc, /* tp_doc */
1640 0, /* tp_traverse */
1642 0, /* tp_richcompare */
1643 0, /* tp_weaklistoffset */
1644 #if PY_VERSION_HEX >= 0x02020000
1646 0, /* tp_iternext */
1647 swigobject_methods, /* tp_methods */
1652 0, /* tp_descr_get */
1653 0, /* tp_descr_set */
1654 0, /* tp_dictoffset */
1663 0, /* tp_subclasses */
1664 0, /* tp_weaklist */
1666 #if PY_VERSION_HEX >= 0x02030000
1670 0,0,0,0 /* tp_alloc -> tp_next */
1673 pyswigobject_type = tmp;
1674 pyswigobject_type.ob_type = &PyType_Type;
1677 return &pyswigobject_type;
1680 SWIGRUNTIME PyObject *
1681 PySwigObject_New(void *ptr, swig_type_info *ty, int own)
1683 PySwigObject *sobj = PyObject_NEW(PySwigObject, PySwigObject_type());
1690 return (PyObject *)sobj;
1693 /* -----------------------------------------------------------------------------
1694 * Implements a simple Swig Packed type, and use it instead of string
1695 * ----------------------------------------------------------------------------- */
1705 PySwigPacked_print(PySwigPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))
1707 char result[SWIG_BUFFER_SIZE];
1708 fputs("<Swig Packed ", fp);
1709 if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) {
1713 fputs(v->ty->name,fp);
1718 SWIGRUNTIME PyObject *
1719 PySwigPacked_repr(PySwigPacked *v)
1721 char result[SWIG_BUFFER_SIZE];
1722 if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) {
1723 return PyString_FromFormat("<Swig Packed at %s%s>", result, v->ty->name);
1725 return PyString_FromFormat("<Swig Packed %s>", v->ty->name);
1729 SWIGRUNTIME PyObject *
1730 PySwigPacked_str(PySwigPacked *v)
1732 char result[SWIG_BUFFER_SIZE];
1733 if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){
1734 return PyString_FromFormat("%s%s", result, v->ty->name);
1736 return PyString_FromString(v->ty->name);
1741 PySwigPacked_compare(PySwigPacked *v, PySwigPacked *w)
1745 int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
1746 return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size);
1749 SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void);
1751 SWIGRUNTIME PyTypeObject*
1752 PySwigPacked_type(void) {
1753 static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type();
1757 SWIGRUNTIMEINLINE int
1758 PySwigPacked_Check(PyObject *op) {
1759 return ((op)->ob_type == _PySwigPacked_type())
1760 || (strcmp((op)->ob_type->tp_name,"PySwigPacked") == 0);
1764 PySwigPacked_dealloc(PyObject *v)
1766 if (PySwigPacked_Check(v)) {
1767 PySwigPacked *sobj = (PySwigPacked *) v;
1773 SWIGRUNTIME PyTypeObject*
1774 _PySwigPacked_type(void) {
1775 static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer";
1776 static PyTypeObject pyswigpacked_type;
1777 static int type_init = 0;
1779 const PyTypeObject tmp
1781 PyObject_HEAD_INIT(NULL)
1783 (char *)"PySwigPacked", /* tp_name */
1784 sizeof(PySwigPacked), /* tp_basicsize */
1785 0, /* tp_itemsize */
1786 (destructor)PySwigPacked_dealloc, /* tp_dealloc */
1787 (printfunc)PySwigPacked_print, /* tp_print */
1788 (getattrfunc)0, /* tp_getattr */
1789 (setattrfunc)0, /* tp_setattr */
1790 (cmpfunc)PySwigPacked_compare, /* tp_compare */
1791 (reprfunc)PySwigPacked_repr, /* tp_repr */
1792 0, /* tp_as_number */
1793 0, /* tp_as_sequence */
1794 0, /* tp_as_mapping */
1795 (hashfunc)0, /* tp_hash */
1796 (ternaryfunc)0, /* tp_call */
1797 (reprfunc)PySwigPacked_str, /* tp_str */
1798 PyObject_GenericGetAttr, /* tp_getattro */
1799 0, /* tp_setattro */
1800 0, /* tp_as_buffer */
1801 Py_TPFLAGS_DEFAULT, /* tp_flags */
1802 swigpacked_doc, /* tp_doc */
1803 0, /* tp_traverse */
1805 0, /* tp_richcompare */
1806 0, /* tp_weaklistoffset */
1807 #if PY_VERSION_HEX >= 0x02020000
1809 0, /* tp_iternext */
1815 0, /* tp_descr_get */
1816 0, /* tp_descr_set */
1817 0, /* tp_dictoffset */
1826 0, /* tp_subclasses */
1827 0, /* tp_weaklist */
1829 #if PY_VERSION_HEX >= 0x02030000
1833 0,0,0,0 /* tp_alloc -> tp_next */
1836 pyswigpacked_type = tmp;
1837 pyswigpacked_type.ob_type = &PyType_Type;
1840 return &pyswigpacked_type;
1843 SWIGRUNTIME PyObject *
1844 PySwigPacked_New(void *ptr, size_t size, swig_type_info *ty)
1846 PySwigPacked *sobj = PyObject_NEW(PySwigPacked, PySwigPacked_type());
1848 void *pack = malloc(size);
1850 memcpy(pack, ptr, size);
1855 PyObject_DEL((PyObject *) sobj);
1859 return (PyObject *) sobj;
1862 SWIGRUNTIME swig_type_info *
1863 PySwigPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
1865 if (PySwigPacked_Check(obj)) {
1866 PySwigPacked *sobj = (PySwigPacked *)obj;
1867 if (sobj->size != size) return 0;
1868 memcpy(ptr, sobj->pack, size);
1875 /* -----------------------------------------------------------------------------
1876 * pointers/data manipulation
1877 * ----------------------------------------------------------------------------- */
1879 SWIGRUNTIMEINLINE PyObject *
1882 return PyString_FromString("this");
1885 SWIGRUNTIME PyObject *
1888 static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This();
1892 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1894 SWIGRUNTIME PySwigObject *
1895 SWIG_Python_GetSwigThis(PyObject *pyobj)
1897 if (PySwigObject_Check(pyobj)) {
1898 return (PySwigObject *) pyobj;
1901 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1902 if (PyInstance_Check(pyobj)) {
1903 obj = _PyInstance_Lookup(pyobj, SWIG_This());
1905 PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
1906 if (dictptr != NULL) {
1907 PyObject *dict = *dictptr;
1908 obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0;
1910 #ifdef PyWeakref_CheckProxy
1911 if (PyWeakref_CheckProxy(pyobj)) {
1912 PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
1913 return wobj ? SWIG_Python_GetSwigThis(wobj) : 0;
1916 obj = PyObject_GetAttr(pyobj,SWIG_This());
1920 if (PyErr_Occurred()) PyErr_Clear();
1926 obj = PyObject_GetAttr(pyobj,SWIG_This());
1930 if (PyErr_Occurred()) PyErr_Clear();
1934 if (obj && !PySwigObject_Check(obj)) {
1935 /* a PyObject is called 'this', try to get the 'real this'
1936 PySwigObject from it */
1937 return SWIG_Python_GetSwigThis(obj);
1939 return (PySwigObject *)obj;
1943 /* Acquire a pointer value */
1946 SWIG_Python_AcquirePtr(PyObject *obj, int own) {
1948 PySwigObject *sobj = SWIG_Python_GetSwigThis(obj);
1950 int oldown = sobj->own;
1958 /* Convert a pointer value */
1961 SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
1962 if (!obj) return SWIG_ERROR;
1963 if (obj == Py_None) {
1967 PySwigObject *sobj = SWIG_Python_GetSwigThis(obj);
1969 void *vptr = sobj->ptr;
1971 swig_type_info *to = sobj->ty;
1973 /* no type cast needed */
1974 if (ptr) *ptr = vptr;
1977 swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
1979 sobj = (PySwigObject *)sobj->next;
1981 if (ptr) *ptr = SWIG_TypeCast(tc,vptr);
1986 if (ptr) *ptr = vptr;
1991 if (own) *own = sobj->own;
1992 if (flags & SWIG_POINTER_DISOWN) {
1997 int res = SWIG_ERROR;
1998 if (flags & SWIG_POINTER_IMPLICIT_CONV) {
1999 PySwigClientData *data = ty ? (PySwigClientData *) ty->clientdata : 0;
2000 if (data && !data->implicitconv) {
2001 PyObject *klass = data->klass;
2004 data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/
2005 impconv = SWIG_Python_CallFunctor(klass, obj);
2006 data->implicitconv = 0;
2007 if (PyErr_Occurred()) {
2012 PySwigObject *iobj = SWIG_Python_GetSwigThis(impconv);
2015 res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0);
2016 if (SWIG_IsOK(res)) {
2019 /* transfer the ownership to 'ptr' */
2021 res = SWIG_AddCast(res);
2022 res = SWIG_AddNewMask(res);
2024 res = SWIG_AddCast(res);
2038 /* Convert a function ptr value */
2041 SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {
2042 if (!PyCFunction_Check(obj)) {
2043 return SWIG_ConvertPtr(obj, ptr, ty, 0);
2047 /* here we get the method pointer for callbacks */
2048 const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
2049 const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0;
2051 desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0;
2052 if (!desc) return SWIG_ERROR;
2055 swig_cast_info *tc = SWIG_TypeCheck(desc,ty);
2056 if (!tc) return SWIG_ERROR;
2057 *ptr = SWIG_TypeCast(tc,vptr);
2065 /* Convert a packed value value */
2068 SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {
2069 swig_type_info *to = PySwigPacked_UnpackData(obj, ptr, sz);
2070 if (!to) return SWIG_ERROR;
2073 /* check type cast? */
2074 swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
2075 if (!tc) return SWIG_ERROR;
2081 /* -----------------------------------------------------------------------------
2082 * Create a new pointer object
2083 * ----------------------------------------------------------------------------- */
2086 Create a new instance object, whitout calling __init__, and set the
2090 SWIGRUNTIME PyObject*
2091 SWIG_Python_NewShadowInstance(PySwigClientData *data, PyObject *swig_this)
2093 #if (PY_VERSION_HEX >= 0x02020000)
2095 PyObject *newraw = data->newraw;
2097 inst = PyObject_Call(newraw, data->newargs, NULL);
2099 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2100 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2101 if (dictptr != NULL) {
2102 PyObject *dict = *dictptr;
2104 dict = PyDict_New();
2106 PyDict_SetItem(dict, SWIG_This(), swig_this);
2110 PyObject *key = SWIG_This();
2111 PyObject_SetAttr(inst, key, swig_this);
2115 PyObject *dict = PyDict_New();
2116 PyDict_SetItem(dict, SWIG_This(), swig_this);
2117 inst = PyInstance_NewRaw(data->newargs, dict);
2122 #if (PY_VERSION_HEX >= 0x02010000)
2124 PyObject *dict = PyDict_New();
2125 PyDict_SetItem(dict, SWIG_This(), swig_this);
2126 inst = PyInstance_NewRaw(data->newargs, dict);
2128 return (PyObject *) inst;
2130 PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type);
2134 inst->in_class = (PyClassObject *)data->newargs;
2135 Py_INCREF(inst->in_class);
2136 inst->in_dict = PyDict_New();
2137 if (inst->in_dict == NULL) {
2141 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2142 inst->in_weakreflist = NULL;
2144 #ifdef Py_TPFLAGS_GC
2145 PyObject_GC_Init(inst);
2147 PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this);
2148 return (PyObject *) inst;
2154 SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
2157 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2158 PyObject **dictptr = _PyObject_GetDictPtr(inst);
2159 if (dictptr != NULL) {
2162 dict = PyDict_New();
2165 PyDict_SetItem(dict, SWIG_This(), swig_this);
2169 dict = PyObject_GetAttrString(inst, (char*)"__dict__");
2170 PyDict_SetItem(dict, SWIG_This(), swig_this);
2175 SWIGINTERN PyObject *
2176 SWIG_Python_InitShadowInstance(PyObject *args) {
2178 if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) {
2181 PySwigObject *sthis = SWIG_Python_GetSwigThis(obj[0]);
2183 PySwigObject_append((PyObject*) sthis, obj[1]);
2185 SWIG_Python_SetSwigThis(obj[0], obj[1]);
2187 return SWIG_Py_Void();
2191 /* Create a new pointer object */
2193 SWIGRUNTIME PyObject *
2194 SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) {
2196 return SWIG_Py_Void();
2198 int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0;
2199 PyObject *robj = PySwigObject_New(ptr, type, own);
2200 PySwigClientData *clientdata = type ? (PySwigClientData *)(type->clientdata) : 0;
2201 if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) {
2202 PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj);
2212 /* Create a new packed object */
2214 SWIGRUNTIMEINLINE PyObject *
2215 SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
2216 return ptr ? PySwigPacked_New((void *) ptr, sz, type) : SWIG_Py_Void();
2219 /* -----------------------------------------------------------------------------*
2221 * -----------------------------------------------------------------------------*/
2223 #ifdef SWIG_LINK_RUNTIME
2224 void *SWIG_ReturnGlobalTypeList(void *);
2227 SWIGRUNTIME swig_module_info *
2228 SWIG_Python_GetModule(void) {
2229 static void *type_pointer = (void *)0;
2230 /* first check if module already created */
2231 if (!type_pointer) {
2232 #ifdef SWIG_LINK_RUNTIME
2233 type_pointer = SWIG_ReturnGlobalTypeList((void *)0);
2235 type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION,
2236 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME);
2237 if (PyErr_Occurred()) {
2239 type_pointer = (void *)0;
2243 return (swig_module_info *) type_pointer;
2246 #if PY_MAJOR_VERSION < 2
2247 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2248 is copied out of Python/modsupport.c in python version 2.3.4 */
2250 PyModule_AddObject(PyObject *m, char *name, PyObject *o)
2253 if (!PyModule_Check(m)) {
2254 PyErr_SetString(PyExc_TypeError,
2255 "PyModule_AddObject() needs module as first arg");
2259 PyErr_SetString(PyExc_TypeError,
2260 "PyModule_AddObject() needs non-NULL value");
2264 dict = PyModule_GetDict(m);
2266 /* Internal error -- modules must have a dict! */
2267 PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__",
2268 PyModule_GetName(m));
2271 if (PyDict_SetItemString(dict, name, o))
2279 SWIG_Python_DestroyModule(void *vptr)
2281 swig_module_info *swig_module = (swig_module_info *) vptr;
2282 swig_type_info **types = swig_module->types;
2284 for (i =0; i < swig_module->size; ++i) {
2285 swig_type_info *ty = types[i];
2287 PySwigClientData *data = (PySwigClientData *) ty->clientdata;
2288 if (data) PySwigClientData_Del(data);
2291 Py_DECREF(SWIG_This());
2295 SWIG_Python_SetModule(swig_module_info *swig_module) {
2296 static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */
2298 PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION,
2299 swig_empty_runtime_method_table);
2300 PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule);
2301 if (pointer && module) {
2302 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer);
2304 Py_XDECREF(pointer);
2308 /* The python cached type query */
2309 SWIGRUNTIME PyObject *
2310 SWIG_Python_TypeCache(void) {
2311 static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New();
2315 SWIGRUNTIME swig_type_info *
2316 SWIG_Python_TypeQuery(const char *type)
2318 PyObject *cache = SWIG_Python_TypeCache();
2319 PyObject *key = PyString_FromString(type);
2320 PyObject *obj = PyDict_GetItem(cache, key);
2321 swig_type_info *descriptor;
2323 descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj);
2325 swig_module_info *swig_module = SWIG_Python_GetModule();
2326 descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type);
2328 obj = PyCObject_FromVoidPtr(descriptor, NULL);
2329 PyDict_SetItem(cache, key, obj);
2338 For backward compatibility only
2340 #define SWIG_POINTER_EXCEPTION 0
2341 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2342 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2345 SWIG_Python_AddErrMesg(const char* mesg, int infront)
2347 if (PyErr_Occurred()) {
2349 PyObject *value = 0;
2350 PyObject *traceback = 0;
2351 PyErr_Fetch(&type, &value, &traceback);
2353 PyObject *old_str = PyObject_Str(value);
2357 PyErr_Format(type, "%s %s", mesg, PyString_AsString(old_str));
2359 PyErr_Format(type, "%s %s", PyString_AsString(old_str), mesg);
2370 SWIG_Python_ArgFail(int argnum)
2372 if (PyErr_Occurred()) {
2373 /* add information about failing argument */
2375 PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum);
2376 return SWIG_Python_AddErrMesg(mesg, 1);
2382 SWIGRUNTIMEINLINE const char *
2383 PySwigObject_GetDesc(PyObject *self)
2385 PySwigObject *v = (PySwigObject *)self;
2386 swig_type_info *ty = v ? v->ty : 0;
2387 return ty ? ty->str : (char*)"";
2391 SWIG_Python_TypeError(const char *type, PyObject *obj)
2394 #if defined(SWIG_COBJECT_TYPES)
2395 if (obj && PySwigObject_Check(obj)) {
2396 const char *otype = (const char *) PySwigObject_GetDesc(obj);
2398 PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'PySwigObject(%s)' is received",
2405 const char *otype = (obj ? obj->ob_type->tp_name : 0);
2407 PyObject *str = PyObject_Str(obj);
2408 const char *cstr = str ? PyString_AsString(str) : 0;
2410 PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received",
2413 PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received",
2420 PyErr_Format(PyExc_TypeError, "a '%s' is expected", type);
2422 PyErr_Format(PyExc_TypeError, "unexpected type is received");
2427 /* Convert a pointer value, signal an exception on a type mismatch */
2429 SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) {
2431 if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) {
2433 if (flags & SWIG_POINTER_EXCEPTION) {
2434 SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj);
2435 SWIG_Python_ArgFail(argnum);
2451 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2453 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2457 #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0)
2460 /* -------- TYPES TABLE (BEGIN) -------- */
2462 #define SWIGTYPE_p_TALLOC_CTX swig_types[0]
2463 #define SWIGTYPE_p_char swig_types[1]
2464 #define SWIGTYPE_p_f_p_void_enum_ldb_debug_level_p_q_const__char_va_list__void swig_types[2]
2465 #define SWIGTYPE_p_int swig_types[3]
2466 #define SWIGTYPE_p_ldb_context swig_types[4]
2467 #define SWIGTYPE_p_ldb_dn swig_types[5]
2468 #define SWIGTYPE_p_ldb_ldif swig_types[6]
2469 #define SWIGTYPE_p_ldb_message swig_types[7]
2470 #define SWIGTYPE_p_ldb_message_element swig_types[8]
2471 #define SWIGTYPE_p_ldb_module_ops swig_types[9]
2472 #define SWIGTYPE_p_ldb_result swig_types[10]
2473 #define SWIGTYPE_p_long_long swig_types[11]
2474 #define SWIGTYPE_p_p_char swig_types[12]
2475 #define SWIGTYPE_p_p_ldb_control swig_types[13]
2476 #define SWIGTYPE_p_p_ldb_result swig_types[14]
2477 #define SWIGTYPE_p_short swig_types[15]
2478 #define SWIGTYPE_p_signed_char swig_types[16]
2479 #define SWIGTYPE_p_unsigned_char swig_types[17]
2480 #define SWIGTYPE_p_unsigned_int swig_types[18]
2481 #define SWIGTYPE_p_unsigned_long swig_types[19]
2482 #define SWIGTYPE_p_unsigned_long_long swig_types[20]
2483 #define SWIGTYPE_p_unsigned_short swig_types[21]
2484 #define SWIGTYPE_p_void swig_types[22]
2485 static swig_type_info *swig_types[24];
2486 static swig_module_info swig_module = {swig_types, 23, 0, 0, 0, 0};
2487 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2488 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2490 /* -------- TYPES TABLE (END) -------- */
2492 #if (PY_VERSION_HEX <= 0x02000000)
2493 # if !defined(SWIG_PYTHON_CLASSIC)
2494 # error "This python version requires swig to be run with the '-classic' option"
2497 #if (PY_VERSION_HEX <= 0x02020000)
2498 # error "This python version requires swig to be run with the '-nomodern' option"
2500 #if (PY_VERSION_HEX <= 0x02020000)
2501 # error "This python version requires swig to be run with the '-nomodernargs' option"
2504 # error "This python version requires swig to be run with the '-nofastunpack' option"
2506 #ifdef SWIG_TypeQuery
2507 # undef SWIG_TypeQuery
2509 #define SWIG_TypeQuery SWIG_Python_TypeQuery
2511 /*-----------------------------------------------
2513 ------------------------------------------------*/
2514 #define SWIG_init init_ldb
2516 #define SWIG_name "_ldb"
2518 #define SWIGVERSION 0x010333
2519 #define SWIG_VERSION SWIGVERSION
2522 #define SWIG_as_voidptr(a) (void *)((const void *)(a))
2523 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
2528 #include <stdbool.h>
2531 #include "ldb_errors.h"
2532 #include "ldb_private.h"
2534 typedef struct ldb_message ldb_msg;
2535 typedef struct ldb_context ldb;
2536 typedef struct ldb_dn ldb_dn;
2537 typedef struct ldb_ldif ldb_ldif;
2538 typedef struct ldb_message_element ldb_msg_element;
2539 typedef int ldb_error;
2543 #define SWIG_From_long PyInt_FromLong
2546 SWIGINTERNINLINE PyObject *
2547 SWIG_From_int (int value)
2549 return SWIG_From_long (value);
2553 SWIGINTERN swig_type_info*
2554 SWIG_pchar_descriptor(void)
2556 static int init = 0;
2557 static swig_type_info* info = 0;
2559 info = SWIG_TypeQuery("_p_char");
2567 SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
2569 if (PyString_Check(obj)) {
2570 char *cstr; Py_ssize_t len;
2571 PyString_AsStringAndSize(obj, &cstr, &len);
2575 In python the user should not be able to modify the inner
2576 string representation. To warranty that, if you define
2577 SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
2578 buffer is always returned.
2580 The default behavior is just to return the pointer value,
2583 #if defined(SWIG_PYTHON_SAFE_CSTRINGS)
2584 if (*alloc != SWIG_OLDOBJ)
2586 if (*alloc == SWIG_NEWOBJ)
2589 *cptr = (char *)memcpy((char *)malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1));
2590 *alloc = SWIG_NEWOBJ;
2594 *alloc = SWIG_OLDOBJ;
2597 *cptr = PyString_AsString(obj);
2600 if (psize) *psize = len + 1;
2603 swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
2604 if (pchar_descriptor) {
2606 if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
2607 if (cptr) *cptr = (char *) vptr;
2608 if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
2609 if (alloc) *alloc = SWIG_OLDOBJ;
2614 return SWIG_TypeError;
2620 SWIGINTERN ldb_dn *new_ldb_dn(ldb *ldb_ctx,char const *str){
2621 ldb_dn *ret = ldb_dn_new(ldb_ctx, ldb_ctx, str);
2622 /* ldb_dn_new() doesn't accept NULL as memory context, so
2623 we do it this way... */
2624 talloc_steal(NULL, ret);
2627 SWIG_exception(SWIG_ValueError,
2628 "unable to parse dn string");
2632 SWIGINTERN void delete_ldb_dn(ldb_dn *self){ talloc_free(self); }
2634 SWIGINTERNINLINE PyObject*
2635 SWIG_From_bool (bool value)
2637 return PyBool_FromLong(value ? 1 : 0);
2641 SWIGINTERNINLINE PyObject *
2642 SWIG_FromCharPtrAndSize(const char* carray, size_t size)
2645 if (size > INT_MAX) {
2646 swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
2647 return pchar_descriptor ?
2648 SWIG_NewPointerObj((char *)(carray), pchar_descriptor, 0) : SWIG_Py_Void();
2650 return PyString_FromStringAndSize(carray, (int)(size));
2653 return SWIG_Py_Void();
2658 SWIGINTERNINLINE PyObject *
2659 SWIG_FromCharPtr(const char *cptr)
2661 return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0));
2664 SWIGINTERN ldb_dn *ldb_dn_parent(ldb_dn *self){ return ldb_dn_get_parent(NULL, self); }
2665 SWIGINTERN char const *ldb_dn_canonical_str(ldb_dn *self){
2666 return ldb_dn_canonical_string(self, self);
2668 SWIGINTERN char const *ldb_dn_canonical_ex_str(ldb_dn *self){
2669 return ldb_dn_canonical_ex_string(self, self);
2671 SWIGINTERN ldb_dn *ldb_dn___add__(ldb_dn *self,ldb_dn *other){
2672 ldb_dn *ret = ldb_dn_copy(NULL, self);
2673 ldb_dn_add_child(ret, other);
2677 int ldb_dn_from_pyobject(TALLOC_CTX *mem_ctx, PyObject *object,
2678 struct ldb_context *ldb_ctx, ldb_dn **dn)
2682 if (ldb_ctx != NULL && PyString_Check(object)) {
2683 *dn = ldb_dn_new(mem_ctx, ldb_ctx, PyString_AsString(object));
2686 ret = SWIG_ConvertPtr(object, (void **)&odn, SWIGTYPE_p_ldb_dn,
2687 SWIG_POINTER_EXCEPTION);
2688 *dn = ldb_dn_copy(mem_ctx, odn);
2692 ldb_msg_element *ldb_msg_element_from_pyobject(TALLOC_CTX *mem_ctx,
2693 PyObject *set_obj, int flags,
2694 const char *attr_name)
2696 struct ldb_message_element *me = talloc(mem_ctx, struct ldb_message_element);
2697 me->name = attr_name;
2699 if (PyString_Check(set_obj)) {
2701 me->values = talloc_array(me, struct ldb_val, me->num_values);
2702 me->values[0].length = PyString_Size(set_obj);
2703 me->values[0].data = (uint8_t *)talloc_strdup(me->values,
2704 PyString_AsString(set_obj));
2705 } else if (PySequence_Check(set_obj)) {
2707 me->num_values = PySequence_Size(set_obj);
2708 me->values = talloc_array(me, struct ldb_val, me->num_values);
2709 for (i = 0; i < me->num_values; i++) {
2710 PyObject *obj = PySequence_GetItem(set_obj, i);
2711 me->values[i].length = PyString_Size(obj);
2712 me->values[i].data = (uint8_t *)PyString_AsString(obj);
2722 PyObject *ldb_msg_element_to_set(ldb_msg_element *me)
2727 /* Python << 2.5 doesn't have PySet_New and PySet_Add. */
2728 result = PyList_New(me->num_values);
2730 for (i = 0; i < me->num_values; i++) {
2731 PyList_SetItem(result, i,
2732 PyString_FromStringAndSize((const char *)me->values[i].data,
2733 me->values[i].length));
2740 SWIGINTERN PyObject *ldb_msg_element___iter__(ldb_msg_element *self){
2741 return PyObject_GetIter(ldb_msg_element_to_set(self));
2743 SWIGINTERN PyObject *ldb_msg_element___set__(ldb_msg_element *self){
2744 return ldb_msg_element_to_set(self);
2748 #if !defined(SWIG_NO_LLONG_MAX)
2749 # if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
2750 # define LLONG_MAX __LONG_LONG_MAX__
2751 # define LLONG_MIN (-LLONG_MAX - 1LL)
2752 # define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
2758 SWIG_AsVal_double (PyObject *obj, double *val)
2760 int res = SWIG_TypeError;
2761 if (PyFloat_Check(obj)) {
2762 if (val) *val = PyFloat_AsDouble(obj);
2764 } else if (PyInt_Check(obj)) {
2765 if (val) *val = PyInt_AsLong(obj);
2767 } else if (PyLong_Check(obj)) {
2768 double v = PyLong_AsDouble(obj);
2769 if (!PyErr_Occurred()) {
2776 #ifdef SWIG_PYTHON_CAST_MODE
2779 double d = PyFloat_AsDouble(obj);
2780 if (!PyErr_Occurred()) {
2782 return SWIG_AddCast(SWIG_OK);
2787 long v = PyLong_AsLong(obj);
2788 if (!PyErr_Occurred()) {
2790 return SWIG_AddCast(SWIG_AddCast(SWIG_OK));
2807 SWIGINTERNINLINE int
2808 SWIG_CanCastAsInteger(double *d, double min, double max) {
2810 if ((min <= x && x <= max)) {
2811 double fx = floor(x);
2812 double cx = ceil(x);
2813 double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */
2814 if ((errno == EDOM) || (errno == ERANGE)) {
2817 double summ, reps, diff;
2820 } else if (rd > x) {
2827 if (reps < 8*DBL_EPSILON) {
2838 SWIG_AsVal_long (PyObject *obj, long* val)
2840 if (PyInt_Check(obj)) {
2841 if (val) *val = PyInt_AsLong(obj);
2843 } else if (PyLong_Check(obj)) {
2844 long v = PyLong_AsLong(obj);
2845 if (!PyErr_Occurred()) {
2852 #ifdef SWIG_PYTHON_CAST_MODE
2855 long v = PyInt_AsLong(obj);
2856 if (!PyErr_Occurred()) {
2858 return SWIG_AddCast(SWIG_OK);
2864 int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
2865 if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) {
2866 if (val) *val = (long)(d);
2872 return SWIG_TypeError;
2877 SWIG_AsVal_int (PyObject * obj, int *val)
2880 int res = SWIG_AsVal_long (obj, &v);
2881 if (SWIG_IsOK(res)) {
2882 if ((v < INT_MIN || v > INT_MAX)) {
2883 return SWIG_OverflowError;
2885 if (val) *val = (int)(v);
2891 SWIGINTERN ldb_msg_element *new_ldb_msg_element(PyObject *set_obj,int flags,char const *name){
2892 return ldb_msg_element_from_pyobject(NULL, set_obj, flags, name);
2894 SWIGINTERN int ldb_msg_element___len__(ldb_msg_element *self){
2895 return self->num_values;
2897 SWIGINTERN PyObject *ldb_msg_element_get(ldb_msg_element *self,int i){
2898 if (i < 0 || i >= self->num_values)
2901 return PyString_FromStringAndSize(
2902 (const char *)self->values[i].data,
2903 self->values[i].length);
2905 SWIGINTERN void delete_ldb_msg_element(ldb_msg_element *self){ talloc_free(self); }
2907 PyObject *ldb_msg_list_elements(ldb_msg *msg)
2910 PyObject *obj = PyList_New(msg->num_elements);
2911 for (i = 0; i < msg->num_elements; i++)
2912 PyList_SetItem(obj, i, PyString_FromString(msg->elements[i].name));
2916 SWIGINTERN ldb_msg *new_ldb_msg(ldb_dn *dn){
2917 ldb_msg *ret = ldb_msg_new(NULL);
2918 ret->dn = talloc_reference(ret, dn);
2921 SWIGINTERN void delete_ldb_msg(ldb_msg *self){ talloc_free(self); }
2922 SWIGINTERN void ldb_msg___setitem____SWIG_0(ldb_msg *self,char const *attr_name,ldb_msg_element *val){
2923 struct ldb_message_element *el;
2925 ldb_msg_remove_attr(self, attr_name);
2927 el = talloc(self, struct ldb_message_element);
2928 el->name = talloc_strdup(el, attr_name);
2929 el->num_values = val->num_values;
2930 el->values = talloc_reference(el, val->values);
2932 ldb_msg_add(self, el, val->flags);
2934 SWIGINTERN void ldb_msg___setitem____SWIG_1(ldb_msg *self,char const *attr_name,PyObject *val){
2935 struct ldb_message_element *el = ldb_msg_element_from_pyobject(NULL,
2937 talloc_steal(self, el);
2938 ldb_msg_remove_attr(self, attr_name);
2939 ldb_msg_add(self, el, el->flags);
2941 SWIGINTERN unsigned int ldb_msg___len__(ldb_msg *self){ return self->num_elements; }
2943 SWIGINTERNINLINE PyObject*
2944 SWIG_From_unsigned_SS_long (unsigned long value)
2946 return (value > LONG_MAX) ?
2947 PyLong_FromUnsignedLong(value) : PyInt_FromLong((long)(value));
2951 SWIGINTERNINLINE PyObject *
2952 SWIG_From_unsigned_SS_int (unsigned int value)
2954 return SWIG_From_unsigned_SS_long (value);
2957 SWIGINTERN PyObject *ldb_msg_keys(ldb_msg *self){
2958 return ldb_msg_list_elements(self);
2960 SWIGINTERN PyObject *ldb_msg___iter__(ldb_msg *self){
2961 return PyObject_GetIter(ldb_msg_list_elements(self));
2964 static void py_ldb_debug(void *context, enum ldb_debug_level level, const char *fmt, va_list ap)
2967 PyObject *fn = context;
2969 vasprintf(&text, fmt, ap);
2970 PyObject_CallFunction(fn, (char *)"(i,s)", level, text);
2975 static PyObject *ldb_ldif_to_pyobject(ldb_ldif *ldif)
2980 return Py_BuildValue((char *)"(iO)", ldif->changetype,
2981 SWIG_NewPointerObj(ldif->msg, SWIGTYPE_p_ldb_message, 0));
2986 PyObject *PyExc_LdbError;
2988 SWIGINTERN ldb *new_ldb(){ return ldb_init(NULL); }
2991 SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val)
2993 if (PyInt_Check(obj)) {
2994 long v = PyInt_AsLong(obj);
2999 return SWIG_OverflowError;
3001 } else if (PyLong_Check(obj)) {
3002 unsigned long v = PyLong_AsUnsignedLong(obj);
3003 if (!PyErr_Occurred()) {
3010 #ifdef SWIG_PYTHON_CAST_MODE
3013 unsigned long v = PyLong_AsUnsignedLong(obj);
3014 if (!PyErr_Occurred()) {
3016 return SWIG_AddCast(SWIG_OK);
3022 int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
3023 if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) {
3024 if (val) *val = (unsigned long)(d);
3030 return SWIG_TypeError;
3035 SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val)
3038 int res = SWIG_AsVal_unsigned_SS_long (obj, &v);
3039 if (SWIG_IsOK(res)) {
3040 if ((v > UINT_MAX)) {
3041 return SWIG_OverflowError;
3043 if (val) *val = (unsigned int)(v);
3049 SWIGINTERN void delete_ldb(ldb *self){ talloc_free(self); }
3050 SWIGINTERN ldb_error ldb_search_ex(ldb *self,TALLOC_CTX *mem_ctx,ldb_dn *base,enum ldb_scope scope,char const *expression,char const *const *attrs,struct ldb_control **controls,struct ldb_result **OUT){
3052 struct ldb_result *res;
3053 struct ldb_request *req;
3054 res = talloc_zero(mem_ctx, struct ldb_result);
3059 ret = ldb_build_search_req(&req, self, mem_ctx,
3060 base?base:ldb_get_default_basedn(self),
3066 ldb_search_default_callback);
3073 ldb_set_timeout(self, req, 0); /* use default timeout */
3075 ret = ldb_request(self, req);
3078 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
3086 SWIGINTERN ldb_error ldb_add__SWIG_1(ldb *self,PyObject *py_msg){
3088 int dict_pos, msg_pos;
3089 PyObject *key, *value;
3090 ldb_msg_element *msgel;
3091 ldb_msg *msg = NULL;
3093 if (PyDict_Check(py_msg)) {
3094 msg = ldb_msg_new(NULL);
3095 msg->elements = talloc_zero_array(msg, struct ldb_message_element, PyDict_Size(py_msg));
3096 msg_pos = dict_pos = 0;
3097 while (PyDict_Next(py_msg, &dict_pos, &key, &value)) {
3098 if (!strcmp(PyString_AsString(key), "dn")) {
3099 if (ldb_dn_from_pyobject(msg, value, self, &msg->dn) != 0) {
3103 msgel = ldb_msg_element_from_pyobject(msg->elements, value, 0, PyString_AsString(key));
3104 if (msgel == NULL) {
3105 SWIG_exception(SWIG_TypeError, "unable to import element");
3108 memcpy(&msg->elements[msg_pos], msgel, sizeof(*msgel));
3113 if (msg->dn == NULL) {
3114 SWIG_exception(SWIG_TypeError, "no dn set");
3118 msg->num_elements = msg_pos;
3120 if (SWIG_ConvertPtr(py_msg, (void **)&msg, SWIGTYPE_p_ldb_message, 0) != 0)
3124 ret = ldb_add(self, msg);
3132 SWIGINTERN ldb_error ldb___contains__(ldb *self,ldb_dn *dn,struct ldb_result **result_as_bool){
3133 return ldb_search(self, dn, LDB_SCOPE_BASE, NULL, NULL,
3136 SWIGINTERN PyObject *ldb_parse_ldif(ldb *self,char const *s){
3137 PyObject *list = PyList_New(0);
3138 struct ldb_ldif *ldif;
3139 while ((ldif = ldb_ldif_read_string(self, &s)) != NULL) {
3140 PyList_Append(list, ldb_ldif_to_pyobject(ldif));
3142 return PyObject_GetIter(list);
3145 static char *timestring(time_t t)
3147 char *tresult = ldb_timestring(NULL, t);
3148 char *result = strdup(tresult);
3149 talloc_free(tresult);
3156 SWIGINTERN PyObject *_wrap_new_Dn(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
3157 PyObject *resultobj = 0;
3158 ldb *arg1 = (ldb *) 0 ;
3159 char *arg2 = (char *) 0 ;
3160 ldb_dn *result = 0 ;
3166 PyObject * obj0 = 0 ;
3167 PyObject * obj1 = 0 ;
3168 char * kwnames[] = {
3169 (char *) "ldb_ctx",(char *) "str", NULL
3172 if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:new_Dn",kwnames,&obj0,&obj1)) SWIG_fail;
3173 res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ldb_context, 0 | 0 );
3174 if (!SWIG_IsOK(res1)) {
3175 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Dn" "', argument " "1"" of type '" "ldb *""'");
3177 arg1 = (ldb *)(argp1);
3178 res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
3179 if (!SWIG_IsOK(res2)) {
3180 SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_Dn" "', argument " "2"" of type '" "char const *""'");
3182 arg2 = (char *)(buf2);
3184 SWIG_exception(SWIG_ValueError,
3185 "ldb context must be non-NULL");
3186 result = (ldb_dn *)new_ldb_dn(arg1,(char const *)arg2);
3187 resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ldb_dn, SWIG_POINTER_NEW | 0 );
3188 if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
3191 if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
3196 SWIGINTERN PyObject *_wrap_delete_Dn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3197 PyObject *resultobj = 0;
3198 ldb_dn *arg1 = (ldb_dn *) 0 ;
3201 PyObject *swig_obj[1] ;
3203 if (!args) SWIG_fail;
3205 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, SWIG_POINTER_DISOWN | 0 );
3206 if (!SWIG_IsOK(res1)) {
3207 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Dn" "', argument " "1"" of type '" "ldb_dn *""'");
3209 arg1 = (ldb_dn *)(argp1);
3210 delete_ldb_dn(arg1);
3212 resultobj = SWIG_Py_Void();
3219 SWIGINTERN PyObject *_wrap_Dn_validate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3220 PyObject *resultobj = 0;
3221 ldb_dn *arg1 = (ldb_dn *) 0 ;
3225 PyObject *swig_obj[1] ;
3227 if (!args) SWIG_fail;
3229 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3230 if (!SWIG_IsOK(res1)) {
3231 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn_validate" "', argument " "1"" of type '" "ldb_dn *""'");
3233 arg1 = (ldb_dn *)(argp1);
3234 result = (bool)ldb_dn_validate(arg1);
3235 resultobj = SWIG_From_bool((bool)(result));
3242 SWIGINTERN PyObject *_wrap_Dn_get_casefold(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3243 PyObject *resultobj = 0;
3244 ldb_dn *arg1 = (ldb_dn *) 0 ;
3248 PyObject *swig_obj[1] ;
3250 if (!args) SWIG_fail;
3252 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3253 if (!SWIG_IsOK(res1)) {
3254 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn_get_casefold" "', argument " "1"" of type '" "ldb_dn *""'");
3256 arg1 = (ldb_dn *)(argp1);
3257 result = (char *)ldb_dn_get_casefold(arg1);
3258 resultobj = SWIG_FromCharPtr((const char *)result);
3265 SWIGINTERN PyObject *_wrap_Dn___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3266 PyObject *resultobj = 0;
3267 ldb_dn *arg1 = (ldb_dn *) 0 ;
3271 PyObject *swig_obj[1] ;
3273 if (!args) SWIG_fail;
3275 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3276 if (!SWIG_IsOK(res1)) {
3277 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn___str__" "', argument " "1"" of type '" "ldb_dn *""'");
3279 arg1 = (ldb_dn *)(argp1);
3280 result = (char *)ldb_dn_get_linearized(arg1);
3281 resultobj = SWIG_FromCharPtr((const char *)result);
3288 SWIGINTERN PyObject *_wrap_Dn_parent(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3289 PyObject *resultobj = 0;
3290 ldb_dn *arg1 = (ldb_dn *) 0 ;
3291 ldb_dn *result = 0 ;
3294 PyObject *swig_obj[1] ;
3296 if (!args) SWIG_fail;
3298 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3299 if (!SWIG_IsOK(res1)) {
3300 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn_parent" "', argument " "1"" of type '" "ldb_dn *""'");
3302 arg1 = (ldb_dn *)(argp1);
3303 result = (ldb_dn *)ldb_dn_parent(arg1);
3304 resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ldb_dn, 0 | 0 );
3311 SWIGINTERN PyObject *_wrap_Dn___cmp__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
3312 PyObject *resultobj = 0;
3313 ldb_dn *arg1 = (ldb_dn *) 0 ;
3314 ldb_dn *arg2 = (ldb_dn *) 0 ;
3320 PyObject * obj0 = 0 ;
3321 PyObject * obj1 = 0 ;
3322 char * kwnames[] = {
3323 (char *) "self",(char *) "other", NULL
3326 if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Dn___cmp__",kwnames,&obj0,&obj1)) SWIG_fail;
3327 res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3328 if (!SWIG_IsOK(res1)) {
3329 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn___cmp__" "', argument " "1"" of type '" "ldb_dn *""'");
3331 arg1 = (ldb_dn *)(argp1);
3332 res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ldb_dn, 0 | 0 );
3333 if (!SWIG_IsOK(res2)) {
3334 SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Dn___cmp__" "', argument " "2"" of type '" "ldb_dn *""'");
3336 arg2 = (ldb_dn *)(argp2);
3337 result = (int)ldb_dn_compare(arg1,arg2);
3338 resultobj = SWIG_From_int((int)(result));
3345 SWIGINTERN PyObject *_wrap_Dn_is_valid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3346 PyObject *resultobj = 0;
3347 ldb_dn *arg1 = (ldb_dn *) 0 ;
3351 PyObject *swig_obj[1] ;
3353 if (!args) SWIG_fail;
3355 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3356 if (!SWIG_IsOK(res1)) {
3357 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn_is_valid" "', argument " "1"" of type '" "ldb_dn *""'");
3359 arg1 = (ldb_dn *)(argp1);
3360 result = (bool)ldb_dn_is_valid(arg1);
3361 resultobj = SWIG_From_bool((bool)(result));
3368 SWIGINTERN PyObject *_wrap_Dn_is_special(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3369 PyObject *resultobj = 0;
3370 ldb_dn *arg1 = (ldb_dn *) 0 ;
3374 PyObject *swig_obj[1] ;
3376 if (!args) SWIG_fail;
3378 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3379 if (!SWIG_IsOK(res1)) {
3380 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn_is_special" "', argument " "1"" of type '" "ldb_dn *""'");
3382 arg1 = (ldb_dn *)(argp1);
3383 result = (bool)ldb_dn_is_special(arg1);
3384 resultobj = SWIG_From_bool((bool)(result));
3391 SWIGINTERN PyObject *_wrap_Dn_is_null(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
3392 PyObject *resultobj = 0;
3393 ldb_dn *arg1 = (ldb_dn *) 0 ;
3397 PyObject *swig_obj[1] ;
3399 if (!args) SWIG_fail;
3401 res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_ldb_dn, 0 | 0 );
3402 if (!SWIG_IsOK(res1)) {
3403 SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dn_is_null" "', argument " "1"" of type '" "ldb_dn *""'");
3405 arg1 = (ldb_dn *)(argp1);
3406 result = (bool)ldb_dn_is_null(arg1);
3407 resultobj = SWIG_From_bool((bool)(result));