EVOLUTION-MANAGER
Edit File: gdal_wrap.cpp
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.40 * * 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 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE #ifdef __cplusplus /* SwigValueWrapper is described in swig.swg */ template<typename T> class SwigValueWrapper { struct SwigMovePointer { T *ptr; SwigMovePointer(T *p) : ptr(p) { } ~SwigMovePointer() { delete ptr; } SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } } pointer; SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs); SwigValueWrapper(const SwigValueWrapper<T>& rhs); public: SwigValueWrapper() : pointer(0) { } SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } operator T&() const { return *pointer.ptr; } T *operator&() { return pointer.ptr; } }; template <typename T> T SwigValueInit() { return T(); } #endif /* ----------------------------------------------------------------------------- * 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 # elif defined(__HP_aCC) /* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ /* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ # 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__) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # define SWIGUNUSED __attribute__ ((__unused__)) # else # define SWIGUNUSED # endif # elif defined(__ICC) # define SWIGUNUSED __attribute__ ((__unused__)) # else # define SWIGUNUSED # endif #endif #ifndef SWIG_MSC_UNSUPPRESS_4505 # if defined(_MSC_VER) # pragma warning(disable : 4505) /* unreferenced local function has been removed */ # endif #endif #ifndef SWIGUNUSEDPARM # ifdef __cplusplus # define SWIGUNUSEDPARM(p) # else # define SWIGUNUSEDPARM(p) p 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 */ #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) # ifndef GCC_HASCLASSVISIBILITY # define GCC_HASCLASSVISIBILITY # endif #endif #ifndef SWIGEXPORT # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # if defined(STATIC_LINKED) # define SWIGEXPORT # else # define SWIGEXPORT __declspec(dllexport) # endif # else # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) # define SWIGEXPORT __attribute__ ((visibility("default"))) # else # define SWIGEXPORT # endif # endif #endif /* calling conventions for Windows */ #ifndef SWIGSTDCALL # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # define SWIGSTDCALL __stdcall # else # define SWIGSTDCALL # endif #endif /* Deal with Microsoft's attempt at deprecating C standard runtime functions */ #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) # define _CRT_SECURE_NO_DEPRECATE #endif /* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ #if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) # define _SCL_SECURE_NO_DEPRECATE #endif /* Python.h has to appear first */ #include <Python.h> /* ----------------------------------------------------------------------------- * swigrun.swg * * This file contains generic C API 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 "4" /* 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 strictly necessary, ie, if you have problems with your compiler or suchlike. */ #ifndef SWIGRUNTIME # define SWIGRUNTIME SWIGINTERN #endif #ifndef SWIGRUNTIMEINLINE # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE #endif /* Generic buffer size */ #ifndef SWIG_BUFFER_SIZE # define SWIG_BUFFER_SIZE 1024 #endif /* Flags for pointer conversions */ #define SWIG_POINTER_DISOWN 0x1 #define SWIG_CAST_NEW_MEMORY 0x2 /* Flags for new pointer objects */ #define SWIG_POINTER_OWN 0x1 /* Flags/methods for returning states. The SWIG conversion methods, as ConvertPtr, return and integer that tells if the conversion was successful or not. And if not, an error code can be returned (see swigerrors.swg for the codes). Use the following macros/flags to set or process the returning states. In old versions of SWIG, code such as the following was usually written: if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { // success code } else { //fail code } Now you can be more explicit: int res = SWIG_ConvertPtr(obj,vptr,ty.flags); if (SWIG_IsOK(res)) { // success code } else { // fail code } which is the same really, but now you can also do Type *ptr; int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); if (SWIG_IsOK(res)) { // success code if (SWIG_IsNewObj(res) { ... delete *ptr; } else { ... } } else { // fail code } I.e., now SWIG_ConvertPtr can return new objects and you can identify the case and take care of the deallocation. Of course that also requires SWIG_ConvertPtr to return new result values, such as int SWIG_ConvertPtr(obj, ptr,...) { if (<obj is ok>) { if (<need new object>) { *ptr = <ptr to new allocated object>; return SWIG_NEWOBJ; } else { *ptr = <ptr to old object>; return SWIG_OLDOBJ; } } else { return SWIG_BADOBJ; } } Of course, returning the plain '0(success)/-1(fail)' still works, but you can be more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the SWIG errors code. Finally, if the SWIG_CASTRANK_MODE is enabled, the result code allows to return the 'cast rank', for example, if you have this int food(double) int fooi(int); and you call food(1) // cast rank '1' (1 -> 1.0) fooi(1) // cast rank '0' just use the SWIG_AddCast()/SWIG_CheckState() */ #define SWIG_OK (0) #define SWIG_ERROR (-1) #define SWIG_IsOK(r) (r >= 0) #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) /* The CastRankLimit says how many bits are used for the cast rank */ #define SWIG_CASTRANKLIMIT (1 << 8) /* The NewMask denotes the object was created (using new/malloc) */ #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) /* The TmpMask is for in/out typemaps that use temporal objects */ #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) /* Simple returning values */ #define SWIG_BADOBJ (SWIG_ERROR) #define SWIG_OLDOBJ (SWIG_OK) #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) /* Check, add and del mask methods */ #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) /* Cast-Rank Mode */ #if defined(SWIG_CASTRANK_MODE) # ifndef SWIG_TypeRank # define SWIG_TypeRank unsigned long # endif # ifndef SWIG_MAXCASTRANK /* Default cast allowed */ # define SWIG_MAXCASTRANK (2) # endif # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) SWIGINTERNINLINE int SWIG_AddCast(int r) { return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; } SWIGINTERNINLINE int SWIG_CheckState(int r) { return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; } #else /* no cast-rank mode */ # define SWIG_AddCast # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) #endif #include <string.h> #ifdef __cplusplus extern "C" { #endif typedef void *(*swig_converter_func)(void *, int *); typedef struct swig_type_info *(*swig_dycast_func)(void **); /* Structure to store information 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 */ int owndata; /* flag if the structure owns the clientdata */ } 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<int>" == "Class<int >", 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 (*f1 > *f2) ? 1 : -1; } return (int)((l1 - f1) - (l2 - f2)); } /* Check type equivalence in a name list like <name1>|<name2>|... 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 <name1>|<name2>|... 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; } /* Check the typename */ SWIGRUNTIME swig_cast_info * SWIG_TypeCheck(const char *c, swig_type_info *ty) { if (ty) { swig_cast_info *iter = ty->cast; while (iter) { if (strcmp(iter->type->name, c) == 0) { 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; } /* Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison */ SWIGRUNTIME swig_cast_info * SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { if (ty) { swig_cast_info *iter = ty->cast; while (iter) { if (iter->type == from) { 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; } /* Cast a pointer up an inheritance hierarchy */ SWIGRUNTIMEINLINE void * SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); } /* 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) return NULL; 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) { swig_cast_info *cast = ti->cast; /* if (ti->clientdata == clientdata) return; */ ti->clientdata = clientdata; while (cast) { if (!cast->converter) { swig_type_info *tc = cast->type; if (!tc->clientdata) { SWIG_TypeClientData(tc, clientdata); } } cast = cast->next; } } SWIGRUNTIME void SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { SWIG_TypeClientData(ti, clientdata); ti->owndata = 1; } /* 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; 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 /* Errors in SWIG */ #define SWIG_UnknownError -1 #define SWIG_IOError -2 #define SWIG_RuntimeError -3 #define SWIG_IndexError -4 #define SWIG_TypeError -5 #define SWIG_DivisionByZero -6 #define SWIG_OverflowError -7 #define SWIG_SyntaxError -8 #define SWIG_ValueError -9 #define SWIG_SystemError -10 #define SWIG_AttributeError -11 #define SWIG_MemoryError -12 #define SWIG_NullReferenceError -13 /* Compatibility macros for Python 3 */ #if PY_VERSION_HEX >= 0x03000000 #define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type) #define PyInt_Check(x) PyLong_Check(x) #define PyInt_AsLong(x) PyLong_AsLong(x) #define PyInt_FromLong(x) PyLong_FromLong(x) #define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) #endif #ifndef Py_TYPE # define Py_TYPE(op) ((op)->ob_type) #endif /* SWIG APIs for compatibility of both Python 2 & 3 */ #if PY_VERSION_HEX >= 0x03000000 # define SWIG_Python_str_FromFormat PyUnicode_FromFormat #else # define SWIG_Python_str_FromFormat PyString_FromFormat #endif /* Warning: This function will allocate a new string in Python 3, * so please call SWIG_Python_str_DelForPy3(x) to free the space. */ SWIGINTERN char* SWIG_Python_str_AsChar(PyObject *str) { #if PY_VERSION_HEX >= 0x03000000 char *cstr; char *newstr; Py_ssize_t len; str = PyUnicode_AsUTF8String(str); PyBytes_AsStringAndSize(str, &cstr, &len); newstr = (char *) malloc(len+1); memcpy(newstr, cstr, len+1); Py_XDECREF(str); return newstr; #else return PyString_AsString(str); #endif } #if PY_VERSION_HEX >= 0x03000000 # define SWIG_Python_str_DelForPy3(x) free( (void*) (x) ) #else # define SWIG_Python_str_DelForPy3(x) #endif SWIGINTERN PyObject* SWIG_Python_str_FromChar(const char *c) { #if PY_VERSION_HEX >= 0x03000000 return PyUnicode_FromString(c); #else return PyString_FromString(c); #endif } /* Add PyOS_snprintf for old Pythons */ #if PY_VERSION_HEX < 0x02020000 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) # define PyOS_snprintf _snprintf # else # define PyOS_snprintf snprintf # endif #endif /* A crude PyString_FromFormat implementation for old Pythons */ #if PY_VERSION_HEX < 0x02020000 #ifndef SWIG_PYBUFFER_SIZE # define SWIG_PYBUFFER_SIZE 1024 #endif static PyObject * PyString_FromFormat(const char *fmt, ...) { va_list ap; char buf[SWIG_PYBUFFER_SIZE * 2]; int res; va_start(ap, fmt); res = vsnprintf(buf, sizeof(buf), fmt, ap); va_end(ap); return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); } #endif /* Add PyObject_Del for old Pythons */ #if PY_VERSION_HEX < 0x01060000 # define PyObject_Del(op) PyMem_DEL((op)) #endif #ifndef PyObject_DEL # define PyObject_DEL PyObject_Del #endif /* A crude PyExc_StopIteration exception for old Pythons */ #if PY_VERSION_HEX < 0x02020000 # ifndef PyExc_StopIteration # define PyExc_StopIteration PyExc_RuntimeError # endif # ifndef PyObject_GenericGetAttr # define PyObject_GenericGetAttr 0 # endif #endif /* Py_NotImplemented is defined in 2.1 and up. */ #if PY_VERSION_HEX < 0x02010000 # ifndef Py_NotImplemented # define Py_NotImplemented PyExc_RuntimeError # endif #endif /* A crude PyString_AsStringAndSize implementation for old Pythons */ #if PY_VERSION_HEX < 0x02010000 # ifndef PyString_AsStringAndSize # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} # endif #endif /* PySequence_Size for old Pythons */ #if PY_VERSION_HEX < 0x02000000 # ifndef PySequence_Size # define PySequence_Size PySequence_Length # endif #endif /* PyBool_FromLong for old Pythons */ #if PY_VERSION_HEX < 0x02030000 static PyObject *PyBool_FromLong(long ok) { PyObject *result = ok ? Py_True : Py_False; Py_INCREF(result); return result; } #endif /* Py_ssize_t for old Pythons */ /* This code is as recommended by: */ /* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) typedef int Py_ssize_t; # define PY_SSIZE_T_MAX INT_MAX # define PY_SSIZE_T_MIN INT_MIN #endif /* ----------------------------------------------------------------------------- * error manipulation * ----------------------------------------------------------------------------- */ SWIGRUNTIME PyObject* SWIG_Python_ErrorType(int code) { PyObject* type = 0; switch(code) { case SWIG_MemoryError: type = PyExc_MemoryError; break; case SWIG_IOError: type = PyExc_IOError; break; case SWIG_RuntimeError: type = PyExc_RuntimeError; break; case SWIG_IndexError: type = PyExc_IndexError; break; case SWIG_TypeError: type = PyExc_TypeError; break; case SWIG_DivisionByZero: type = PyExc_ZeroDivisionError; break; case SWIG_OverflowError: type = PyExc_OverflowError; break; case SWIG_SyntaxError: type = PyExc_SyntaxError; break; case SWIG_ValueError: type = PyExc_ValueError; break; case SWIG_SystemError: type = PyExc_SystemError; break; case SWIG_AttributeError: type = PyExc_AttributeError; break; default: type = PyExc_RuntimeError; } return type; } SWIGRUNTIME void SWIG_Python_AddErrorMsg(const char* mesg) { PyObject *type = 0; PyObject *value = 0; PyObject *traceback = 0; if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); if (value) { char *tmp; PyObject *old_str = PyObject_Str(value); PyErr_Clear(); Py_XINCREF(type); PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); SWIG_Python_str_DelForPy3(tmp); Py_DECREF(old_str); Py_DECREF(value); } else { PyErr_SetString(PyExc_RuntimeError, mesg); } } #if defined(SWIG_PYTHON_NO_THREADS) # if defined(SWIG_PYTHON_THREADS) # undef SWIG_PYTHON_THREADS # endif #endif #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ # define SWIG_PYTHON_USE_GIL # endif # endif # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ # ifndef SWIG_PYTHON_INITIALIZE_THREADS # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() # endif # ifdef __cplusplus /* C++ code */ class SWIG_Python_Thread_Block { bool status; PyGILState_STATE state; public: void end() { if (status) { PyGILState_Release(state); status = false;} } SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} ~SWIG_Python_Thread_Block() { end(); } }; class SWIG_Python_Thread_Allow { bool status; PyThreadState *save; public: void end() { if (status) { PyEval_RestoreThread(save); status = false; }} SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} ~SWIG_Python_Thread_Allow() { end(); } }; # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() # else /* C code */ # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) # endif # else /* Old thread way, not implemented, user must provide it */ # if !defined(SWIG_PYTHON_INITIALIZE_THREADS) # define SWIG_PYTHON_INITIALIZE_THREADS # endif # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) # define SWIG_PYTHON_THREAD_BEGIN_BLOCK # endif # if !defined(SWIG_PYTHON_THREAD_END_BLOCK) # define SWIG_PYTHON_THREAD_END_BLOCK # endif # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) # define SWIG_PYTHON_THREAD_BEGIN_ALLOW # endif # if !defined(SWIG_PYTHON_THREAD_END_ALLOW) # define SWIG_PYTHON_THREAD_END_ALLOW # endif # endif #else /* No thread support */ # define SWIG_PYTHON_INITIALIZE_THREADS # define SWIG_PYTHON_THREAD_BEGIN_BLOCK # define SWIG_PYTHON_THREAD_END_BLOCK # define SWIG_PYTHON_THREAD_BEGIN_ALLOW # define SWIG_PYTHON_THREAD_END_ALLOW #endif /* ----------------------------------------------------------------------------- * Python API portion that goes into the runtime * ----------------------------------------------------------------------------- */ #ifdef __cplusplus extern "C" { #if 0 } /* cc-mode */ #endif #endif /* ----------------------------------------------------------------------------- * Constant declarations * ----------------------------------------------------------------------------- */ /* Constant Types */ #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; /* ----------------------------------------------------------------------------- * Wrapper of PyInstanceMethod_New() used in Python 3 * It is exported to the generated module, used for -fastproxy * ----------------------------------------------------------------------------- */ SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *self, PyObject *func) { #if PY_VERSION_HEX >= 0x03000000 return PyInstanceMethod_New(func); #else return NULL; #endif } #ifdef __cplusplus #if 0 { /* cc-mode */ #endif } #endif /* ----------------------------------------------------------------------------- * See the LICENSE file for information on copyright, usage and redistribution * of SWIG, and the README file for authors - http://www.swig.org/release.html. * * pyrun.swg * * This file contains the runtime support for Python modules * and includes code for managing global variables and pointer * type checking. * * ----------------------------------------------------------------------------- */ /* Common SWIG API */ /* for raw pointers */ #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags) #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) #define swig_owntype int /* for raw packed data */ #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) /* for class or struct pointers */ #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) /* for C or C++ function pointers */ #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0) /* for C++ member pointers, ie, member methods */ #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) /* Runtime API */ #if PY_VERSION_HEX >= 0x03020000 #define SWIG_PYTHON_USE_CAPSULE #endif #define SWIG_GetModule(clientdata) SWIG_Python_GetModule() #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) #define SWIG_NewClientData(obj) SwigPyClientData_New(obj) #define SWIG_SetErrorObj SWIG_Python_SetErrorObj #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) #define SWIG_fail goto fail /* Runtime API implementation */ /* Error manipulation */ SWIGINTERN void SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { SWIG_PYTHON_THREAD_BEGIN_BLOCK; PyErr_SetObject(errtype, obj); Py_DECREF(obj); SWIG_PYTHON_THREAD_END_BLOCK; } SWIGINTERN void SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { SWIG_PYTHON_THREAD_BEGIN_BLOCK; PyErr_SetString(errtype, (char *) msg); SWIG_PYTHON_THREAD_END_BLOCK; } #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) /* Set a constant value */ SWIGINTERN void SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { PyDict_SetItemString(d, (char*) name, obj); Py_DECREF(obj); } /* Append a value to the result obj */ SWIGINTERN PyObject* SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { #if !defined(SWIG_PYTHON_OUTPUT_TUPLE) if (!result) { result = obj; } else if (result == Py_None) { Py_DECREF(result); result = obj; } else { if (!PyList_Check(result)) { PyObject *o2 = result; result = PyList_New(1); PyList_SetItem(result, 0, o2); } PyList_Append(result,obj); Py_DECREF(obj); } return result; #else PyObject* o2; PyObject* o3; if (!result) { result = obj; } else if (result == Py_None) { Py_DECREF(result); result = obj; } else { if (!PyTuple_Check(result)) { o2 = result; result = PyTuple_New(1); PyTuple_SET_ITEM(result, 0, o2); } o3 = PyTuple_New(1); PyTuple_SET_ITEM(o3, 0, obj); o2 = result; result = PySequence_Concat(o2, o3); Py_DECREF(o2); Py_DECREF(o3); } return result; #endif } /* Unpack the argument tuple */ SWIGINTERN int SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) { if (!args) { if (!min && !max) { return 1; } else { PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", name, (min == max ? "" : "at least "), (int)min); return 0; } } if (!PyTuple_Check(args)) { PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); return 0; } else { register Py_ssize_t l = PyTuple_GET_SIZE(args); if (l < min) { PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", name, (min == max ? "" : "at least "), (int)min, (int)l); return 0; } else if (l > max) { PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", name, (min == max ? "" : "at most "), (int)max, (int)l); return 0; } else { register int i; for (i = 0; i < l; ++i) { objs[i] = PyTuple_GET_ITEM(args, i); } for (; l < max; ++l) { objs[l] = 0; } return i + 1; } } } /* A functor is a function object with one single object argument */ #if PY_VERSION_HEX >= 0x02020000 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); #else #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); #endif /* Helper for static pointer initialization for both C and C++ code, for example static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); */ #ifdef __cplusplus #define SWIG_STATIC_POINTER(var) var #else #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var #endif /* ----------------------------------------------------------------------------- * Pointer declarations * ----------------------------------------------------------------------------- */ /* Flags for new pointer objects */ #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) #ifdef __cplusplus extern "C" { #if 0 } /* cc-mode */ #endif #endif /* How to access Py_None */ #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) # ifndef SWIG_PYTHON_NO_BUILD_NONE # ifndef SWIG_PYTHON_BUILD_NONE # define SWIG_PYTHON_BUILD_NONE # endif # endif #endif #ifdef SWIG_PYTHON_BUILD_NONE # ifdef Py_None # undef Py_None # define Py_None SWIG_Py_None() # endif SWIGRUNTIMEINLINE PyObject * _SWIG_Py_None(void) { PyObject *none = Py_BuildValue((char*)""); Py_DECREF(none); return none; } SWIGRUNTIME PyObject * SWIG_Py_None(void) { static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); return none; } #endif /* The python void return value */ SWIGRUNTIMEINLINE PyObject * SWIG_Py_Void(void) { PyObject *none = Py_None; Py_INCREF(none); return none; } /* SwigPyClientData */ typedef struct { PyObject *klass; PyObject *newraw; PyObject *newargs; PyObject *destroy; int delargs; int implicitconv; } SwigPyClientData; SWIGRUNTIMEINLINE int SWIG_Python_CheckImplicit(swig_type_info *ty) { SwigPyClientData *data = (SwigPyClientData *)ty->clientdata; return data ? data->implicitconv : 0; } SWIGRUNTIMEINLINE PyObject * SWIG_Python_ExceptionType(swig_type_info *desc) { SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0; PyObject *klass = data ? data->klass : 0; return (klass ? klass : PyExc_RuntimeError); } SWIGRUNTIME SwigPyClientData * SwigPyClientData_New(PyObject* obj) { if (!obj) { return 0; } else { SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData)); /* the klass element */ data->klass = obj; Py_INCREF(data->klass); /* the newraw method and newargs arguments used to create a new raw instance */ if (PyClass_Check(obj)) { data->newraw = 0; data->newargs = obj; Py_INCREF(obj); } else { #if (PY_VERSION_HEX < 0x02020000) data->newraw = 0; #else data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); #endif if (data->newraw) { Py_INCREF(data->newraw); data->newargs = PyTuple_New(1); PyTuple_SetItem(data->newargs, 0, obj); } else { data->newargs = obj; } Py_INCREF(data->newargs); } /* the destroy method, aka as the C++ delete method */ data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); if (PyErr_Occurred()) { PyErr_Clear(); data->destroy = 0; } if (data->destroy) { int flags; Py_INCREF(data->destroy); flags = PyCFunction_GET_FLAGS(data->destroy); #ifdef METH_O data->delargs = !(flags & (METH_O)); #else data->delargs = 0; #endif } else { data->delargs = 0; } data->implicitconv = 0; return data; } } SWIGRUNTIME void SwigPyClientData_Del(SwigPyClientData* data) { Py_XDECREF(data->newraw); Py_XDECREF(data->newargs); Py_XDECREF(data->destroy); } /* =============== SwigPyObject =====================*/ typedef struct { PyObject_HEAD void *ptr; swig_type_info *ty; int own; PyObject *next; } SwigPyObject; SWIGRUNTIME PyObject * SwigPyObject_long(SwigPyObject *v) { return PyLong_FromVoidPtr(v->ptr); } SWIGRUNTIME PyObject * SwigPyObject_format(const char* fmt, SwigPyObject *v) { PyObject *res = NULL; PyObject *args = PyTuple_New(1); if (args) { if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { PyObject *ofmt = SWIG_Python_str_FromChar(fmt); if (ofmt) { #if PY_VERSION_HEX >= 0x03000000 res = PyUnicode_Format(ofmt,args); #else res = PyString_Format(ofmt,args); #endif Py_DECREF(ofmt); } Py_DECREF(args); } } return res; } SWIGRUNTIME PyObject * SwigPyObject_oct(SwigPyObject *v) { return SwigPyObject_format("%o",v); } SWIGRUNTIME PyObject * SwigPyObject_hex(SwigPyObject *v) { return SwigPyObject_format("%x",v); } SWIGRUNTIME PyObject * #ifdef METH_NOARGS SwigPyObject_repr(SwigPyObject *v) #else SwigPyObject_repr(SwigPyObject *v, PyObject *args) #endif { const char *name = SWIG_TypePrettyName(v->ty); PyObject *repr = SWIG_Python_str_FromFormat("<Swig Object of type '%s' at %p>", name, v); if (v->next) { #ifdef METH_NOARGS PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next); #else PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args); #endif #if PY_VERSION_HEX >= 0x03000000 PyObject *joined = PyUnicode_Concat(repr, nrep); Py_DecRef(repr); Py_DecRef(nrep); repr = joined; #else PyString_ConcatAndDel(&repr,nrep); #endif } return repr; } SWIGRUNTIME int SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { char *str; #ifdef METH_NOARGS PyObject *repr = SwigPyObject_repr(v); #else PyObject *repr = SwigPyObject_repr(v, NULL); #endif if (repr) { str = SWIG_Python_str_AsChar(repr); fputs(str, fp); SWIG_Python_str_DelForPy3(str); Py_DECREF(repr); return 0; } else { return 1; } } SWIGRUNTIME PyObject * SwigPyObject_str(SwigPyObject *v) { char result[SWIG_BUFFER_SIZE]; return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ? SWIG_Python_str_FromChar(result) : 0; } SWIGRUNTIME int SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) { void *i = v->ptr; void *j = w->ptr; return (i < j) ? -1 : ((i > j) ? 1 : 0); } /* Added for Python 3.x, would it also be useful for Python 2.x? */ SWIGRUNTIME PyObject* SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op) { PyObject* res; if( op != Py_EQ && op != Py_NE ) { Py_INCREF(Py_NotImplemented); return Py_NotImplemented; } if( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ) res = Py_True; else res = Py_False; Py_INCREF(res); return res; } SWIGRUNTIME PyTypeObject* _PySwigObject_type(void); SWIGRUNTIME PyTypeObject* SwigPyObject_type(void) { static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type(); return type; } SWIGRUNTIMEINLINE int SwigPyObject_Check(PyObject *op) { return (Py_TYPE(op) == SwigPyObject_type()) || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); } SWIGRUNTIME PyObject * SwigPyObject_New(void *ptr, swig_type_info *ty, int own); SWIGRUNTIME void SwigPyObject_dealloc(PyObject *v) { SwigPyObject *sobj = (SwigPyObject *) v; PyObject *next = sobj->next; if (sobj->own == SWIG_POINTER_OWN) { swig_type_info *ty = sobj->ty; SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; PyObject *destroy = data ? data->destroy : 0; if (destroy) { /* destroy is always a VARARGS method */ PyObject *res; if (data->delargs) { /* we need to create a temporary object to carry the destroy operation */ PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0); res = SWIG_Python_CallFunctor(destroy, tmp); Py_DECREF(tmp); } else { PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); PyObject *mself = PyCFunction_GET_SELF(destroy); res = ((*meth)(mself, v)); } Py_XDECREF(res); } #if !defined(SWIG_PYTHON_SILENT_MEMLEAK) else { const char *name = SWIG_TypePrettyName(ty); printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown")); } #endif } Py_XDECREF(next); PyObject_DEL(v); } SWIGRUNTIME PyObject* SwigPyObject_append(PyObject* v, PyObject* next) { SwigPyObject *sobj = (SwigPyObject *) v; #ifndef METH_O PyObject *tmp = 0; if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; next = tmp; #endif if (!SwigPyObject_Check(next)) { return NULL; } sobj->next = next; Py_INCREF(next); return SWIG_Py_Void(); } SWIGRUNTIME PyObject* #ifdef METH_NOARGS SwigPyObject_next(PyObject* v) #else SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) #endif { SwigPyObject *sobj = (SwigPyObject *) v; if (sobj->next) { Py_INCREF(sobj->next); return sobj->next; } else { return SWIG_Py_Void(); } } SWIGINTERN PyObject* #ifdef METH_NOARGS SwigPyObject_disown(PyObject *v) #else SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) #endif { SwigPyObject *sobj = (SwigPyObject *)v; sobj->own = 0; return SWIG_Py_Void(); } SWIGINTERN PyObject* #ifdef METH_NOARGS SwigPyObject_acquire(PyObject *v) #else SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) #endif { SwigPyObject *sobj = (SwigPyObject *)v; sobj->own = SWIG_POINTER_OWN; return SWIG_Py_Void(); } SWIGINTERN PyObject* SwigPyObject_own(PyObject *v, PyObject *args) { PyObject *val = 0; #if (PY_VERSION_HEX < 0x02020000) if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) #else if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) #endif { return NULL; } else { SwigPyObject *sobj = (SwigPyObject *)v; PyObject *obj = PyBool_FromLong(sobj->own); if (val) { #ifdef METH_NOARGS if (PyObject_IsTrue(val)) { SwigPyObject_acquire(v); } else { SwigPyObject_disown(v); } #else if (PyObject_IsTrue(val)) { SwigPyObject_acquire(v,args); } else { SwigPyObject_disown(v,args); } #endif } return obj; } } #ifdef METH_O static PyMethodDef swigobject_methods[] = { {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"}, {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"}, {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"}, {0, 0, 0, 0} }; #else static PyMethodDef swigobject_methods[] = { {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"}, {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"}, {0, 0, 0, 0} }; #endif #if PY_VERSION_HEX < 0x02020000 SWIGINTERN PyObject * SwigPyObject_getattr(SwigPyObject *sobj,char *name) { return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); } #endif SWIGRUNTIME PyTypeObject* _PySwigObject_type(void) { static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; static PyNumberMethods SwigPyObject_as_number = { (binaryfunc)0, /*nb_add*/ (binaryfunc)0, /*nb_subtract*/ (binaryfunc)0, /*nb_multiply*/ /* nb_divide removed in Python 3 */ #if PY_VERSION_HEX < 0x03000000 (binaryfunc)0, /*nb_divide*/ #endif (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*/ #if PY_VERSION_HEX < 0x03000000 0, /*nb_coerce*/ #endif (unaryfunc)SwigPyObject_long, /*nb_int*/ #if PY_VERSION_HEX < 0x03000000 (unaryfunc)SwigPyObject_long, /*nb_long*/ #else 0, /*nb_reserved*/ #endif (unaryfunc)0, /*nb_float*/ #if PY_VERSION_HEX < 0x03000000 (unaryfunc)SwigPyObject_oct, /*nb_oct*/ (unaryfunc)SwigPyObject_hex, /*nb_hex*/ #endif #if PY_VERSION_HEX >= 0x03000000 /* 3.0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ #elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ #elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ #elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */ 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ #endif }; static PyTypeObject swigpyobject_type; static int type_init = 0; if (!type_init) { const PyTypeObject tmp = { /* PyObject header changed in Python 3 */ #if PY_VERSION_HEX >= 0x03000000 PyVarObject_HEAD_INIT(&PyType_Type, 0) #else PyObject_HEAD_INIT(NULL) 0, /* ob_size */ #endif (char *)"SwigPyObject", /* tp_name */ sizeof(SwigPyObject), /* tp_basicsize */ 0, /* tp_itemsize */ (destructor)SwigPyObject_dealloc, /* tp_dealloc */ (printfunc)SwigPyObject_print, /* tp_print */ #if PY_VERSION_HEX < 0x02020000 (getattrfunc)SwigPyObject_getattr, /* tp_getattr */ #else (getattrfunc)0, /* tp_getattr */ #endif (setattrfunc)0, /* tp_setattr */ #if PY_VERSION_HEX >= 0x03000000 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ #else (cmpfunc)SwigPyObject_compare, /* tp_compare */ #endif (reprfunc)SwigPyObject_repr, /* tp_repr */ &SwigPyObject_as_number, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ (hashfunc)0, /* tp_hash */ (ternaryfunc)0, /* tp_call */ (reprfunc)SwigPyObject_str, /* tp_str */ PyObject_GenericGetAttr, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT, /* tp_flags */ swigobject_doc, /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ (richcmpfunc)SwigPyObject_richcompare, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #if PY_VERSION_HEX >= 0x02020000 0, /* tp_iter */ 0, /* tp_iternext */ swigobject_methods, /* tp_methods */ 0, /* tp_members */ 0, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ 0, /* tp_new */ 0, /* tp_free */ 0, /* tp_is_gc */ 0, /* tp_bases */ 0, /* tp_mro */ 0, /* tp_cache */ 0, /* tp_subclasses */ 0, /* tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; swigpyobject_type = tmp; /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ #if PY_VERSION_HEX < 0x03000000 swigpyobject_type.ob_type = &PyType_Type; #endif type_init = 1; } return &swigpyobject_type; } SWIGRUNTIME PyObject * SwigPyObject_New(void *ptr, swig_type_info *ty, int own) { SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); if (sobj) { sobj->ptr = ptr; sobj->ty = ty; sobj->own = own; sobj->next = 0; } return (PyObject *)sobj; } /* ----------------------------------------------------------------------------- * Implements a simple Swig Packed type, and use it instead of string * ----------------------------------------------------------------------------- */ typedef struct { PyObject_HEAD void *pack; swig_type_info *ty; size_t size; } SwigPyPacked; SWIGRUNTIME int SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { char result[SWIG_BUFFER_SIZE]; fputs("<Swig Packed ", fp); if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { fputs("at ", fp); fputs(result, fp); } fputs(v->ty->name,fp); fputs(">", fp); return 0; } SWIGRUNTIME PyObject * SwigPyPacked_repr(SwigPyPacked *v) { char result[SWIG_BUFFER_SIZE]; if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { return SWIG_Python_str_FromFormat("<Swig Packed at %s%s>", result, v->ty->name); } else { return SWIG_Python_str_FromFormat("<Swig Packed %s>", v->ty->name); } } SWIGRUNTIME PyObject * SwigPyPacked_str(SwigPyPacked *v) { char result[SWIG_BUFFER_SIZE]; if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); } else { return SWIG_Python_str_FromChar(v->ty->name); } } SWIGRUNTIME int SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) { 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 PyTypeObject* _PySwigPacked_type(void); SWIGRUNTIME PyTypeObject* SwigPyPacked_type(void) { static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type(); return type; } SWIGRUNTIMEINLINE int SwigPyPacked_Check(PyObject *op) { return ((op)->ob_type == _PySwigPacked_type()) || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0); } SWIGRUNTIME void SwigPyPacked_dealloc(PyObject *v) { if (SwigPyPacked_Check(v)) { SwigPyPacked *sobj = (SwigPyPacked *) v; free(sobj->pack); } PyObject_DEL(v); } SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void) { static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; static PyTypeObject swigpypacked_type; static int type_init = 0; if (!type_init) { const PyTypeObject tmp = { /* PyObject header changed in Python 3 */ #if PY_VERSION_HEX>=0x03000000 PyVarObject_HEAD_INIT(&PyType_Type, 0) #else PyObject_HEAD_INIT(NULL) 0, /* ob_size */ #endif (char *)"SwigPyPacked", /* tp_name */ sizeof(SwigPyPacked), /* tp_basicsize */ 0, /* tp_itemsize */ (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ (printfunc)SwigPyPacked_print, /* tp_print */ (getattrfunc)0, /* tp_getattr */ (setattrfunc)0, /* tp_setattr */ #if PY_VERSION_HEX>=0x03000000 0, /* tp_reserved in 3.0.1 */ #else (cmpfunc)SwigPyPacked_compare, /* tp_compare */ #endif (reprfunc)SwigPyPacked_repr, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ (hashfunc)0, /* tp_hash */ (ternaryfunc)0, /* tp_call */ (reprfunc)SwigPyPacked_str, /* tp_str */ PyObject_GenericGetAttr, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT, /* tp_flags */ swigpacked_doc, /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #if PY_VERSION_HEX >= 0x02020000 0, /* tp_iter */ 0, /* tp_iternext */ 0, /* tp_methods */ 0, /* tp_members */ 0, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ 0, /* tp_new */ 0, /* tp_free */ 0, /* tp_is_gc */ 0, /* tp_bases */ 0, /* tp_mro */ 0, /* tp_cache */ 0, /* tp_subclasses */ 0, /* tp_weaklist */ #endif #if PY_VERSION_HEX >= 0x02030000 0, /* tp_del */ #endif #ifdef COUNT_ALLOCS 0,0,0,0 /* tp_alloc -> tp_next */ #endif }; swigpypacked_type = tmp; /* for Python 3 the ob_type already assigned in PyVarObject_HEAD_INIT() */ #if PY_VERSION_HEX < 0x03000000 swigpypacked_type.ob_type = &PyType_Type; #endif type_init = 1; } return &swigpypacked_type; } SWIGRUNTIME PyObject * SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty) { SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); if (sobj) { void *pack = malloc(size); if (pack) { memcpy(pack, ptr, size); sobj->pack = pack; sobj->ty = ty; sobj->size = size; } else { PyObject_DEL((PyObject *) sobj); sobj = 0; } } return (PyObject *) sobj; } SWIGRUNTIME swig_type_info * SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size) { if (SwigPyPacked_Check(obj)) { SwigPyPacked *sobj = (SwigPyPacked *)obj; if (sobj->size != size) return 0; memcpy(ptr, sobj->pack, size); return sobj->ty; } else { return 0; } } /* ----------------------------------------------------------------------------- * pointers/data manipulation * ----------------------------------------------------------------------------- */ SWIGRUNTIMEINLINE PyObject * _SWIG_This(void) { return SWIG_Python_str_FromChar("this"); } SWIGRUNTIME PyObject * SWIG_This(void) { static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This(); return swig_this; } /* #define SWIG_PYTHON_SLOW_GETSET_THIS */ /* TODO: I don't know how to implement the fast getset in Python 3 right now */ #if PY_VERSION_HEX>=0x03000000 #define SWIG_PYTHON_SLOW_GETSET_THIS #endif SWIGRUNTIME SwigPyObject * SWIG_Python_GetSwigThis(PyObject *pyobj) { if (SwigPyObject_Check(pyobj)) { return (SwigPyObject *) pyobj; } else { PyObject *obj = 0; #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) if (PyInstance_Check(pyobj)) { obj = _PyInstance_Lookup(pyobj, SWIG_This()); } else { PyObject **dictptr = _PyObject_GetDictPtr(pyobj); if (dictptr != NULL) { PyObject *dict = *dictptr; obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; } else { #ifdef PyWeakref_CheckProxy if (PyWeakref_CheckProxy(pyobj)) { PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; } #endif obj = PyObject_GetAttr(pyobj,SWIG_This()); if (obj) { Py_DECREF(obj); } else { if (PyErr_Occurred()) PyErr_Clear(); return 0; } } } #else obj = PyObject_GetAttr(pyobj,SWIG_This()); if (obj) { Py_DECREF(obj); } else { if (PyErr_Occurred()) PyErr_Clear(); return 0; } #endif if (obj && !SwigPyObject_Check(obj)) { /* a PyObject is called 'this', try to get the 'real this' SwigPyObject from it */ return SWIG_Python_GetSwigThis(obj); } return (SwigPyObject *)obj; } } /* Acquire a pointer value */ SWIGRUNTIME int SWIG_Python_AcquirePtr(PyObject *obj, int own) { if (own == SWIG_POINTER_OWN) { SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); if (sobj) { int oldown = sobj->own; sobj->own = own; return oldown; } } return 0; } /* Convert a pointer value */ SWIGRUNTIME int SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { if (!obj) return SWIG_ERROR; if (obj == Py_None) { if (ptr) *ptr = 0; return SWIG_OK; } else { SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); if (own) *own = 0; while (sobj) { void *vptr = sobj->ptr; if (ty) { swig_type_info *to = sobj->ty; if (to == ty) { /* no type cast needed */ if (ptr) *ptr = vptr; break; } else { swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); if (!tc) { sobj = (SwigPyObject *)sobj->next; } else { if (ptr) { int newmemory = 0; *ptr = SWIG_TypeCast(tc,vptr,&newmemory); if (newmemory == SWIG_CAST_NEW_MEMORY) { assert(own); if (own) *own = *own | SWIG_CAST_NEW_MEMORY; } } break; } } } else { if (ptr) *ptr = vptr; break; } } if (sobj) { if (own) *own = *own | sobj->own; if (flags & SWIG_POINTER_DISOWN) { sobj->own = 0; } return SWIG_OK; } else { int res = SWIG_ERROR; if (flags & SWIG_POINTER_IMPLICIT_CONV) { SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; if (data && !data->implicitconv) { PyObject *klass = data->klass; if (klass) { PyObject *impconv; data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ impconv = SWIG_Python_CallFunctor(klass, obj); data->implicitconv = 0; if (PyErr_Occurred()) { PyErr_Clear(); impconv = 0; } if (impconv) { SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv); if (iobj) { void *vptr; res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); if (SWIG_IsOK(res)) { if (ptr) { *ptr = vptr; /* transfer the ownership to 'ptr' */ iobj->own = 0; res = SWIG_AddCast(res); res = SWIG_AddNewMask(res); } else { res = SWIG_AddCast(res); } } } Py_DECREF(impconv); } } } } return res; } } } /* Convert a function ptr value */ SWIGRUNTIME int SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { if (!PyCFunction_Check(obj)) { return SWIG_ConvertPtr(obj, ptr, ty, 0); } else { void *vptr = 0; /* here we get the method pointer for callbacks */ const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; if (desc) desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; if (!desc) return SWIG_ERROR; if (ty) { swig_cast_info *tc = SWIG_TypeCheck(desc,ty); if (tc) { int newmemory = 0; *ptr = SWIG_TypeCast(tc,vptr,&newmemory); assert(!newmemory); /* newmemory handling not yet implemented */ } else { return SWIG_ERROR; } } else { *ptr = vptr; } return SWIG_OK; } } /* Convert a packed value value */ SWIGRUNTIME int SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz); if (!to) return SWIG_ERROR; if (ty) { if (to != ty) { /* check type cast? */ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); if (!tc) return SWIG_ERROR; } } return SWIG_OK; } /* ----------------------------------------------------------------------------- * Create a new pointer object * ----------------------------------------------------------------------------- */ /* Create a new instance object, without calling __init__, and set the 'this' attribute. */ SWIGRUNTIME PyObject* SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) { #if (PY_VERSION_HEX >= 0x02020000) PyObject *inst = 0; PyObject *newraw = data->newraw; if (newraw) { inst = PyObject_Call(newraw, data->newargs, NULL); if (inst) { #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) PyObject **dictptr = _PyObject_GetDictPtr(inst); if (dictptr != NULL) { PyObject *dict = *dictptr; if (dict == NULL) { dict = PyDict_New(); *dictptr = dict; PyDict_SetItem(dict, SWIG_This(), swig_this); } } #else PyObject *key = SWIG_This(); PyObject_SetAttr(inst, key, swig_this); #endif } } else { #if PY_VERSION_HEX >= 0x03000000 inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); PyObject_SetAttr(inst, SWIG_This(), swig_this); Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; #else PyObject *dict = PyDict_New(); PyDict_SetItem(dict, SWIG_This(), swig_this); inst = PyInstance_NewRaw(data->newargs, dict); Py_DECREF(dict); #endif } return inst; #else #if (PY_VERSION_HEX >= 0x02010000) PyObject *inst; PyObject *dict = PyDict_New(); PyDict_SetItem(dict, SWIG_This(), swig_this); inst = PyInstance_NewRaw(data->newargs, dict); Py_DECREF(dict); return (PyObject *) inst; #else PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); if (inst == NULL) { return NULL; } inst->in_class = (PyClassObject *)data->newargs; Py_INCREF(inst->in_class); inst->in_dict = PyDict_New(); if (inst->in_dict == NULL) { Py_DECREF(inst); return NULL; } #ifdef Py_TPFLAGS_HAVE_WEAKREFS inst->in_weakreflist = NULL; #endif #ifdef Py_TPFLAGS_GC PyObject_GC_Init(inst); #endif PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); return (PyObject *) inst; #endif #endif } SWIGRUNTIME void SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) { PyObject *dict; #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) PyObject **dictptr = _PyObject_GetDictPtr(inst); if (dictptr != NULL) { dict = *dictptr; if (dict == NULL) { dict = PyDict_New(); *dictptr = dict; } PyDict_SetItem(dict, SWIG_This(), swig_this); return; } #endif dict = PyObject_GetAttrString(inst, (char*)"__dict__"); PyDict_SetItem(dict, SWIG_This(), swig_this); Py_DECREF(dict); } SWIGINTERN PyObject * SWIG_Python_InitShadowInstance(PyObject *args) { PyObject *obj[2]; if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) { return NULL; } else { SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]); if (sthis) { SwigPyObject_append((PyObject*) sthis, obj[1]); } else { SWIG_Python_SetSwigThis(obj[0], obj[1]); } return SWIG_Py_Void(); } } /* Create a new pointer object */ SWIGRUNTIME PyObject * SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) { if (!ptr) { return SWIG_Py_Void(); } else { int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; PyObject *robj = SwigPyObject_New(ptr, type, own); SwigPyClientData *clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0; if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); if (inst) { Py_DECREF(robj); robj = inst; } } return robj; } } /* Create a new packed object */ SWIGRUNTIMEINLINE PyObject * SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); } /* -----------------------------------------------------------------------------* * 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 #ifdef SWIG_PYTHON_USE_CAPSULE type_pointer = PyCapsule_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer" SWIG_TYPE_TABLE_NAME, 0); #else type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); #endif if (PyErr_Occurred()) { PyErr_Clear(); type_pointer = (void *)0; } #endif } return (swig_module_info *) type_pointer; } #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 SWIG_ERROR; } if (!o) { PyErr_SetString(PyExc_TypeError, "PyModule_AddObject() needs non-NULL value"); return SWIG_ERROR; } 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 SWIG_ERROR; } if (PyDict_SetItemString(dict, name, o)) return SWIG_ERROR; Py_DECREF(o); return SWIG_OK; } #endif SWIGRUNTIME void #ifdef SWIG_PYTHON_USE_CAPSULE SWIG_Python_DestroyModule(PyObject *capsule) { swig_module_info *swig_module; swig_type_info **types; size_t i; swig_module = (swig_module_info *)PyCapsule_GetPointer(capsule, (char*)"swig_runtime_data" SWIG_RUNTIME_VERSION); if (swig_module == NULL) { PyErr_Clear(); return; } types = swig_module->types; #else SWIG_Python_DestroyModule(void *vptr) { swig_module_info *swig_module = (swig_module_info *) vptr; swig_type_info **types = swig_module->types; size_t i; #endif for (i =0; i < swig_module->size; ++i) { swig_type_info *ty = types[i]; if (ty->owndata) { SwigPyClientData *data = (SwigPyClientData *) ty->clientdata; if (data) SwigPyClientData_Del(data); } } Py_DECREF(SWIG_This()); } SWIGRUNTIME void SWIG_Python_SetModule(swig_module_info *swig_module) { static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ #if PY_VERSION_HEX >= 0x03000000 /* Add a dummy module object into sys.modules */ PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION); #else PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table); #endif #ifdef SWIG_PYTHON_USE_CAPSULE PyObject *pointer = PyCapsule_New((void *) swig_module, (char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer" SWIG_TYPE_TABLE_NAME, SWIG_Python_DestroyModule); #else PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); #endif if (pointer && module) { PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); } else { Py_XDECREF(pointer); } } /* The python cached type query */ SWIGRUNTIME PyObject * SWIG_Python_TypeCache(void) { static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); return cache; } SWIGRUNTIME swig_type_info * SWIG_Python_TypeQuery(const char *type) { PyObject *cache = SWIG_Python_TypeCache(); PyObject *key = SWIG_Python_str_FromChar(type); PyObject *obj = PyDict_GetItem(cache, key); swig_type_info *descriptor; if (obj) { #ifdef SWIG_PYTHON_USE_CAPSULE descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, (char*)"swig_type_info"); #else descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); #endif } else { swig_module_info *swig_module = SWIG_Python_GetModule(); descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); if (descriptor) { #ifdef SWIG_PYTHON_USE_CAPSULE obj = PyCapsule_New(descriptor, (char*)"swig_type_info", NULL); #else obj = PyCObject_FromVoidPtr(descriptor, NULL); #endif PyDict_SetItem(cache, key, obj); Py_DECREF(obj); } } Py_DECREF(key); return descriptor; } /* For backward compatibility only */ #define SWIG_POINTER_EXCEPTION 0 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) 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) { char *tmp; PyObject *old_str = PyObject_Str(value); Py_XINCREF(type); PyErr_Clear(); if (infront) { PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str)); } else { PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); } SWIG_Python_str_DelForPy3(tmp); 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; } } SWIGRUNTIMEINLINE const char * SwigPyObject_GetDesc(PyObject *self) { SwigPyObject *v = (SwigPyObject *)self; swig_type_info *ty = v ? v->ty : 0; return ty ? ty->str : (char*)""; } SWIGRUNTIME void SWIG_Python_TypeError(const char *type, PyObject *obj) { if (type) { #if defined(SWIG_COBJECT_TYPES) if (obj && SwigPyObject_Check(obj)) { const char *otype = (const char *) SwigPyObject_GetDesc(obj); if (otype) { PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%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 ? SWIG_Python_str_AsChar(str) : 0; if (cstr) { PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", type, otype, cstr); SWIG_Python_str_DelForPy3(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"); } } /* 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 SWIG_POINTER_EXCEPTION if (flags) { SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); SWIG_Python_ArgFail(argnum); } #endif } return result; } #ifdef __cplusplus #if 0 { /* cc-mode */ #endif } #endif #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) /* -------- TYPES TABLE (BEGIN) -------- */ #define SWIGTYPE_p_CPLErrorHandler swig_types[0] #define SWIGTYPE_p_CPLVirtualMemShadow swig_types[1] #define SWIGTYPE_p_CPLXMLNode swig_types[2] #define SWIGTYPE_p_GByte swig_types[3] #define SWIGTYPE_p_GDALAsyncReaderShadow swig_types[4] #define SWIGTYPE_p_GDALColorEntry swig_types[5] #define SWIGTYPE_p_GDALColorTableShadow swig_types[6] #define SWIGTYPE_p_GDALDatasetShadow swig_types[7] #define SWIGTYPE_p_GDALDriverShadow swig_types[8] #define SWIGTYPE_p_GDALMajorObjectShadow swig_types[9] #define SWIGTYPE_p_GDALProgressFunc swig_types[10] #define SWIGTYPE_p_GDALRasterAttributeTableShadow swig_types[11] #define SWIGTYPE_p_GDALRasterBandShadow swig_types[12] #define SWIGTYPE_p_GDALTransformerInfoShadow swig_types[13] #define SWIGTYPE_p_GDAL_GCP swig_types[14] #define SWIGTYPE_p_GIntBig swig_types[15] #define SWIGTYPE_p_OGRLayerShadow swig_types[16] #define SWIGTYPE_p_StatBuf swig_types[17] #define SWIGTYPE_p_char swig_types[18] #define SWIGTYPE_p_double swig_types[19] #define SWIGTYPE_p_f_double_p_q_const__char_p_void__int swig_types[20] #define SWIGTYPE_p_int swig_types[21] #define SWIGTYPE_p_p_GDALRasterBandShadow swig_types[22] #define SWIGTYPE_p_p_GDAL_GCP swig_types[23] #define SWIGTYPE_p_p_char swig_types[24] #define SWIGTYPE_p_p_int swig_types[25] #define SWIGTYPE_p_p_void swig_types[26] #define SWIGTYPE_p_size_t swig_types[27] #define SWIGTYPE_p_void swig_types[28] static swig_type_info *swig_types[30]; static swig_module_info swig_module = {swig_types, 29, 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) -------- */ #if (PY_VERSION_HEX <= 0x02000000) # if !defined(SWIG_PYTHON_CLASSIC) # error "This python version requires swig to be run with the '-classic' option" # endif #endif /*----------------------------------------------- @(target):= _gdal.so ------------------------------------------------*/ #if PY_VERSION_HEX >= 0x03000000 # define SWIG_init PyInit__gdal #else # define SWIG_init init_gdal #endif #define SWIG_name "_gdal" #define SWIGVERSION 0x010340 #define SWIG_VERSION SWIGVERSION #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) #include <stdexcept> namespace swig { class SwigPtr_PyObject { protected: PyObject *_obj; public: SwigPtr_PyObject() :_obj(0) { } SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) { Py_XINCREF(_obj); } SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) { if (initial_ref) { Py_XINCREF(_obj); } } SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) { Py_XINCREF(item._obj); Py_XDECREF(_obj); _obj = item._obj; return *this; } ~SwigPtr_PyObject() { Py_XDECREF(_obj); } operator PyObject *() const { return _obj; } PyObject *operator->() const { return _obj; } }; } namespace swig { struct SwigVar_PyObject : SwigPtr_PyObject { SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } SwigVar_PyObject & operator = (PyObject* obj) { Py_XDECREF(_obj); _obj = obj; return *this; } }; } #include <iostream> using namespace std; #include "cpl_port.h" #include "cpl_string.h" #include "cpl_multiproc.h" #include "cpl_http.h" #include "gdal.h" #include "gdal_priv.h" #include "gdal_alg.h" #include "gdalwarper.h" typedef void GDALMajorObjectShadow; typedef void GDALDriverShadow; typedef void GDALDatasetShadow; typedef void GDALRasterBandShadow; typedef void GDALColorTableShadow; typedef void GDALRasterAttributeTableShadow; typedef void GDALTransformerInfoShadow; typedef void GDALAsyncReaderShadow; /* use this to not return the int returned by GDAL */ typedef int RETURN_NONE; int bUseExceptions=0; CPLErrorHandler pfnPreviousHandler = CPLDefaultErrorHandler; void CPL_STDCALL PythonBindingErrorHandler(CPLErr eclass, int code, const char *msg ) { /* ** Generally we want to supress error reporting if we have exceptions ** enabled as the error message will be in the exception thrown in ** Python. */ /* If the error class is CE_Fatal, we want to have a message issued because the CPL support code does an abort() before any exception can be generated */ if (eclass == CE_Fatal ) { pfnPreviousHandler(eclass, code, msg ); } /* ** We do not want to interfere with warnings or debug messages since ** they won't be translated into exceptions. */ if (eclass == CE_Warning || eclass == CE_Debug ) { pfnPreviousHandler(eclass, code, msg ); } } int GetUseExceptions() { return bUseExceptions; } void UseExceptions() { if( !bUseExceptions ) { bUseExceptions = 1; pfnPreviousHandler = CPLSetErrorHandler( (CPLErrorHandler) PythonBindingErrorHandler ); } } void DontUseExceptions() { if( bUseExceptions ) { bUseExceptions = 0; CPLSetErrorHandler( pfnPreviousHandler ); } } #define SWIG_From_long PyInt_FromLong SWIGINTERNINLINE PyObject * SWIG_From_int (int value) { return SWIG_From_long (value); } /* Return a PyObject* from a NULL terminated C String */ static PyObject* GDALPythonObjectFromCStr(const char *pszStr) { const unsigned char* pszIter = (const unsigned char*) pszStr; while(*pszIter != 0) { if (*pszIter > 127) { PyObject* pyObj = PyUnicode_DecodeUTF8(pszStr, strlen(pszStr), "ignore"); if (pyObj != NULL) return pyObj; #if PY_VERSION_HEX >= 0x03000000 return PyBytes_FromString(pszStr); #else return PyString_FromString(pszStr); #endif } pszIter ++; } #if PY_VERSION_HEX >= 0x03000000 return PyUnicode_FromString(pszStr); #else return PyString_FromString(pszStr); #endif } /* Return a NULL terminated c String from a PyObject */ /* Result must be freed with GDALPythonFreeCStr */ static char* GDALPythonObjectToCStr(PyObject* pyObject, int* pbToFree) { *pbToFree = 0; if (PyUnicode_Check(pyObject)) { char *pszStr; char *pszNewStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObject); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif pszNewStr = (char *) malloc(nLen+1); memcpy(pszNewStr, pszStr, nLen+1); Py_XDECREF(pyUTF8Str); *pbToFree = 1; return pszNewStr; } else { #if PY_VERSION_HEX >= 0x03000000 return PyBytes_AsString(pyObject); #else return PyString_AsString(pyObject); #endif } } static void GDALPythonFreeCStr(void* ptr, int bToFree) { if (bToFree) free(ptr); } int wrapper_VSIFReadL( void **buf, int nMembSize, int nMembCount, VSILFILE *fp) { GIntBig buf_size = nMembSize * nMembCount; if (buf_size == 0) { *buf = NULL; return 0; } #if PY_VERSION_HEX >= 0x03000000 *buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { *buf = Py_None; CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return 0; } PyObject* o = (PyObject*) *buf; char *data = PyBytes_AsString(o); GIntBig nRet = (GIntBig)VSIFReadL( data, nMembSize, nMembCount, fp ); if (nRet * nMembSize < buf_size) { _PyBytes_Resize(&o, nRet * nMembSize); *buf = o; } return nRet; #else *buf = (void *)PyString_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return 0; } PyObject* o = (PyObject*) *buf; char *data = PyString_AsString(o); GIntBig nRet = (GIntBig)VSIFReadL( data, nMembSize, nMembCount, fp ); if (nRet * nMembSize < buf_size) { _PyString_Resize(&o, nRet * nMembSize); *buf = o; } return nRet; #endif } #include <limits.h> #if !defined(SWIG_NO_LLONG_MAX) # if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) # define LLONG_MAX __LONG_LONG_MAX__ # define LLONG_MIN (-LLONG_MAX - 1LL) # define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) # endif #endif SWIGINTERN int SWIG_AsVal_double (PyObject *obj, double *val) { int res = SWIG_TypeError; if (PyFloat_Check(obj)) { if (val) *val = PyFloat_AsDouble(obj); return SWIG_OK; } else if (PyInt_Check(obj)) { if (val) *val = PyInt_AsLong(obj); return SWIG_OK; } else if (PyLong_Check(obj)) { double v = PyLong_AsDouble(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_OK; } else { PyErr_Clear(); } } #ifdef SWIG_PYTHON_CAST_MODE { int dispatch = 0; double d = PyFloat_AsDouble(obj); if (!PyErr_Occurred()) { if (val) *val = d; return SWIG_AddCast(SWIG_OK); } else { PyErr_Clear(); } if (!dispatch) { long v = PyLong_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); } else { PyErr_Clear(); } } } #endif return res; } #include <float.h> #include <math.h> SWIGINTERNINLINE int SWIG_CanCastAsInteger(double *d, double min, double max) { double x = *d; if ((min <= x && x <= max)) { double fx = floor(x); double cx = ceil(x); double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ if ((errno == EDOM) || (errno == ERANGE)) { errno = 0; } else { double summ, reps, diff; if (rd < x) { diff = x - rd; } else if (rd > x) { diff = rd - x; } else { return 1; } summ = rd + x; reps = diff/summ; if (reps < 8*DBL_EPSILON) { *d = rd; return 1; } } } return 0; } SWIGINTERN int SWIG_AsVal_long (PyObject *obj, long* val) { if (PyInt_Check(obj)) { if (val) *val = PyInt_AsLong(obj); return SWIG_OK; } else if (PyLong_Check(obj)) { long v = PyLong_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_OK; } else { PyErr_Clear(); } } #ifdef SWIG_PYTHON_CAST_MODE { int dispatch = 0; long v = PyInt_AsLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_AddCast(SWIG_OK); } else { PyErr_Clear(); } if (!dispatch) { double d; int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { if (val) *val = (long)(d); return res; } } } #endif return SWIG_TypeError; } SWIGINTERN int SWIG_AsVal_int (PyObject * obj, int *val) { long v; int res = SWIG_AsVal_long (obj, &v); if (SWIG_IsOK(res)) { if ((v < INT_MIN || v > INT_MAX)) { return SWIG_OverflowError; } else { if (val) *val = static_cast< int >(v); } } return res; } typedef struct { PyObject *psPyCallback; PyObject *psPyCallbackData; int nLastReported; } PyProgressData; /************************************************************************/ /* PyProgressProxy() */ /************************************************************************/ int CPL_STDCALL PyProgressProxy( double dfComplete, const char *pszMessage, void *pData ) { PyProgressData *psInfo = (PyProgressData *) pData; PyObject *psArgs, *psResult; int bContinue = TRUE; if( psInfo->nLastReported == (int) (100.0 * dfComplete) ) return TRUE; if( psInfo->psPyCallback == NULL || psInfo->psPyCallback == Py_None ) return TRUE; psInfo->nLastReported = (int) (100.0 * dfComplete); if( pszMessage == NULL ) pszMessage = ""; if( psInfo->psPyCallbackData == NULL ) psArgs = Py_BuildValue("(dsO)", dfComplete, pszMessage, Py_None ); else psArgs = Py_BuildValue("(dsO)", dfComplete, pszMessage, psInfo->psPyCallbackData ); psResult = PyEval_CallObject( psInfo->psPyCallback, psArgs); Py_XDECREF(psArgs); if( psResult == NULL ) { return TRUE; } if( psResult == Py_None ) { Py_XDECREF(Py_None); return TRUE; } if( !PyArg_Parse( psResult, "i", &bContinue ) ) { PyErr_SetString(PyExc_ValueError, "bad progress return value"); return FALSE; } Py_XDECREF(psResult); return bContinue; } typedef char retStringAndCPLFree; void Debug( const char *msg_class, const char *message ) { CPLDebug( msg_class, "%s", message ); } CPLErr SetErrorHandler( char const * pszCallbackName = NULL ) { CPLErrorHandler pfnHandler = NULL; if( pszCallbackName == NULL || EQUAL(pszCallbackName,"CPLQuietErrorHandler") ) pfnHandler = CPLQuietErrorHandler; else if( EQUAL(pszCallbackName,"CPLDefaultErrorHandler") ) pfnHandler = CPLDefaultErrorHandler; else if( EQUAL(pszCallbackName,"CPLLoggingErrorHandler") ) pfnHandler = CPLLoggingErrorHandler; if ( pfnHandler == NULL ) return CE_Fatal; CPLSetErrorHandler( pfnHandler ); return CE_None; } SWIGINTERN swig_type_info* SWIG_pchar_descriptor(void) { static int init = 0; static swig_type_info* info = 0; if (!init) { info = SWIG_TypeQuery("_p_char"); init = 1; } return info; } SWIGINTERN int SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) { #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj)) #else if (PyString_Check(obj)) #endif { char *cstr; Py_ssize_t len; #if PY_VERSION_HEX>=0x03000000 if (!alloc && cptr) { /* We can't allow converting without allocation, since the internal representation of string in Python 3 is UCS-2/UCS-4 but we require a UTF-8 representation. TODO(bhy) More detailed explanation */ return SWIG_RuntimeError; } obj = PyUnicode_AsUTF8String(obj); PyBytes_AsStringAndSize(obj, &cstr, &len); if(alloc) *alloc = SWIG_NEWOBJ; #else PyString_AsStringAndSize(obj, &cstr, &len); #endif if (cptr) { if (alloc) { /* In python the user should not be able to modify the inner string representation. To warranty that, if you define SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string buffer is always returned. The default behavior is just to return the pointer value, so, be careful. */ #if defined(SWIG_PYTHON_SAFE_CSTRINGS) if (*alloc != SWIG_OLDOBJ) #else if (*alloc == SWIG_NEWOBJ) #endif { *cptr = reinterpret_cast< char* >(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); *alloc = SWIG_NEWOBJ; } else { *cptr = cstr; *alloc = SWIG_OLDOBJ; } } else { #if PY_VERSION_HEX>=0x03000000 assert(0); /* Should never reach here in Python 3 */ #endif *cptr = SWIG_Python_str_AsChar(obj); } } if (psize) *psize = len + 1; #if PY_VERSION_HEX>=0x03000000 Py_XDECREF(obj); #endif return SWIG_OK; } else { swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); if (pchar_descriptor) { void* vptr = 0; if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { if (cptr) *cptr = (char *) vptr; if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; if (alloc) *alloc = SWIG_OLDOBJ; return SWIG_OK; } } } return SWIG_TypeError; } void CPL_STDCALL PyCPLErrorHandler(CPLErr eErrClass, int err_no, const char* pszErrorMsg) { void* user_data = CPLGetErrorHandlerUserData(); PyObject *psArgs; psArgs = Py_BuildValue("(iis)", eErrClass, err_no, pszErrorMsg ); PyEval_CallObject( (PyObject*)user_data, psArgs); Py_XDECREF(psArgs); } CPLErr PushErrorHandler( CPLErrorHandler pfnErrorHandler = NULL, void* user_data = NULL ) { if( pfnErrorHandler == NULL ) CPLPushErrorHandler(CPLQuietErrorHandler); else CPLPushErrorHandlerEx(pfnErrorHandler, user_data); return CE_None; } void PopErrorHandler() { void* user_data = CPLGetErrorHandlerUserData(); if( user_data != NULL ) Py_XDECREF((PyObject*)user_data); CPLPopErrorHandler(); } void Error( CPLErr msg_class = CE_Failure, int err_code = 0, const char* msg = "error" ) { CPLError( msg_class, err_code, "%s", msg ); } retStringAndCPLFree* EscapeString(int len, char *bin_string , int scheme=CPLES_SQL) { return CPLEscapeString(bin_string, len, scheme); } SWIGINTERNINLINE PyObject * SWIG_FromCharPtrAndSize(const char* carray, size_t size) { if (carray) { if (size > INT_MAX) { swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); return pchar_descriptor ? SWIG_NewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); } else { #if PY_VERSION_HEX >= 0x03000000 return PyUnicode_FromStringAndSize(carray, static_cast< int >(size)); #else return PyString_FromStringAndSize(carray, static_cast< int >(size)); #endif } } else { return SWIG_Py_Void(); } } SWIGINTERNINLINE PyObject * SWIG_FromCharPtr(const char *cptr) { return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); } const char *wrapper_CPLGetConfigOption( const char * pszKey, const char * pszDefault = NULL ) { return CPLGetConfigOption( pszKey, pszDefault ); } void wrapper_VSIFileFromMemBuffer( const char* utf8_path, int nBytes, const GByte *pabyData) { GByte* pabyDataDup = (GByte*)VSIMalloc(nBytes); if (pabyDataDup == NULL) return; memcpy(pabyDataDup, pabyData, nBytes); VSIFCloseL(VSIFileFromMemBuffer(utf8_path, (GByte*) pabyDataDup, nBytes, TRUE)); } int wrapper_HasThreadSupport() { return strcmp(CPLGetThreadingModel(), "stub") != 0; } typedef struct { int mode; GIntBig size; GIntBig mtime; } StatBuf; SWIGINTERN StatBuf *new_StatBuf(StatBuf *psStatBuf){ StatBuf *self = (StatBuf*) CPLMalloc( sizeof( StatBuf ) ); self->mode = psStatBuf->mode; self->size = psStatBuf->size; self->mtime = psStatBuf->mtime; return self; } SWIGINTERN void delete_StatBuf(StatBuf *self){ CPLFree(self); } SWIGINTERN int StatBuf_IsDirectory(StatBuf *self){ return (self->mode & S_IFDIR) != 0; } int wrapper_VSIStatL( const char * utf8_path, StatBuf *psStatBufOut, int nFlags = 0 ) { VSIStatBufL sStat; memset(&sStat, 0, sizeof(sStat)); memset(psStatBufOut, 0, sizeof(StatBuf)); int nRet = VSIStatExL(utf8_path, &sStat, nFlags); psStatBufOut->mode = sStat.st_mode; psStatBufOut->size = (GIntBig)sStat.st_size; psStatBufOut->mtime = (GIntBig)sStat.st_mtime; return nRet; } int wrapper_VSIFWriteL( int nLen, char *pBuf, int size, int memb, VSILFILE * f) { if (nLen < size * memb) { CPLError(CE_Failure, CPLE_AppDefined, "Inconsistant buffer size with 'size' and 'memb' values"); return 0; } return VSIFWriteL(pBuf, size, memb, f); } SWIGINTERN char const *GDALMajorObjectShadow_GetDescription(GDALMajorObjectShadow *self){ return GDALGetDescription( self ); } SWIGINTERN void GDALMajorObjectShadow_SetDescription(GDALMajorObjectShadow *self,char const *pszNewDesc){ GDALSetDescription( self, pszNewDesc ); } SWIGINTERN char **GDALMajorObjectShadow_GetMetadataDomainList(GDALMajorObjectShadow *self){ return GDALGetMetadataDomainList( self ); } SWIGINTERN char **GDALMajorObjectShadow_GetMetadata_Dict(GDALMajorObjectShadow *self,char const *pszDomain=""){ return GDALGetMetadata( self, pszDomain ); } SWIGINTERN char **GDALMajorObjectShadow_GetMetadata_List(GDALMajorObjectShadow *self,char const *pszDomain=""){ return GDALGetMetadata( self, pszDomain ); } SWIGINTERN CPLErr GDALMajorObjectShadow_SetMetadata__SWIG_0(GDALMajorObjectShadow *self,char **papszMetadata,char const *pszDomain=""){ return GDALSetMetadata( self, papszMetadata, pszDomain ); } SWIGINTERN CPLErr GDALMajorObjectShadow_SetMetadata__SWIG_1(GDALMajorObjectShadow *self,char *pszMetadataString,char const *pszDomain=""){ char *tmpList[2]; tmpList[0] = pszMetadataString; tmpList[1] = 0; return GDALSetMetadata( self, tmpList, pszDomain ); } SWIGINTERN char const *GDALMajorObjectShadow_GetMetadataItem(GDALMajorObjectShadow *self,char const *pszName,char const *pszDomain=""){ return GDALGetMetadataItem( self, pszName, pszDomain); } SWIGINTERN CPLErr GDALMajorObjectShadow_SetMetadataItem(GDALMajorObjectShadow *self,char const *pszName,char const *pszValue,char const *pszDomain=""){ return GDALSetMetadataItem( self, pszName, pszValue, pszDomain); } SWIGINTERN GDALDatasetShadow *GDALDriverShadow_Create(GDALDriverShadow *self,char const *utf8_path,int xsize,int ysize,int bands=1,GDALDataType eType=GDT_Byte,char **options=0){ GDALDatasetShadow* ds = (GDALDatasetShadow*) GDALCreate( self, utf8_path, xsize, ysize, bands, eType, options ); return ds; } SWIGINTERN GDALDatasetShadow *GDALDriverShadow_CreateCopy(GDALDriverShadow *self,char const *utf8_path,GDALDatasetShadow *src,int strict=1,char **options=0,GDALProgressFunc callback=NULL,void *callback_data=NULL){ GDALDatasetShadow *ds = (GDALDatasetShadow*) GDALCreateCopy( self, utf8_path, src, strict, options, callback, callback_data ); return ds; } SWIGINTERN int GDALDriverShadow_Delete(GDALDriverShadow *self,char const *utf8_path){ return GDALDeleteDataset( self, utf8_path ); } SWIGINTERN int GDALDriverShadow_Rename(GDALDriverShadow *self,char const *newName,char const *oldName){ return GDALRenameDataset( self, newName, oldName ); } SWIGINTERN int GDALDriverShadow_CopyFiles(GDALDriverShadow *self,char const *newName,char const *oldName){ return GDALCopyDatasetFiles( self, newName, oldName ); } SWIGINTERN int GDALDriverShadow_Register(GDALDriverShadow *self){ return GDALRegisterDriver( self ); } SWIGINTERN void GDALDriverShadow_Deregister(GDALDriverShadow *self){ GDALDeregisterDriver( self ); } char const *GDALDriverShadow_ShortName_get( GDALDriverShadow *h ) { return GDALGetDriverShortName( h ); } char const *GDALDriverShadow_LongName_get( GDALDriverShadow *h ) { return GDALGetDriverLongName( h ); } char const *GDALDriverShadow_HelpTopic_get( GDALDriverShadow *h ) { return GDALGetDriverHelpTopic( h ); } SWIGINTERN int SWIG_AsVal_short (PyObject * obj, short *val) { long v; int res = SWIG_AsVal_long (obj, &v); if (SWIG_IsOK(res)) { if ((v < SHRT_MIN || v > SHRT_MAX)) { return SWIG_OverflowError; } else { if (val) *val = static_cast< short >(v); } } return res; } SWIGINTERNINLINE PyObject * SWIG_From_short (short value) { return SWIG_From_long (value); } #define SWIG_From_double PyFloat_FromDouble SWIGINTERN GDAL_GCP *new_GDAL_GCP(double x=0.0,double y=0.0,double z=0.0,double pixel=0.0,double line=0.0,char const *info="",char const *id=""){ GDAL_GCP *self = (GDAL_GCP*) CPLMalloc( sizeof( GDAL_GCP ) ); self->dfGCPX = x; self->dfGCPY = y; self->dfGCPZ = z; self->dfGCPPixel = pixel; self->dfGCPLine = line; self->pszInfo = CPLStrdup( (info == 0) ? "" : info ); self->pszId = CPLStrdup( (id==0)? "" : id ); return self; } SWIGINTERN void delete_GDAL_GCP(GDAL_GCP *self){ if ( self->pszInfo ) CPLFree( self->pszInfo ); if ( self->pszId ) CPLFree( self->pszId ); CPLFree( self ); } double GDAL_GCP_GCPX_get( GDAL_GCP *gcp ) { return gcp->dfGCPX; } void GDAL_GCP_GCPX_set( GDAL_GCP *gcp, double dfGCPX ) { gcp->dfGCPX = dfGCPX; } double GDAL_GCP_GCPY_get( GDAL_GCP *gcp ) { return gcp->dfGCPY; } void GDAL_GCP_GCPY_set( GDAL_GCP *gcp, double dfGCPY ) { gcp->dfGCPY = dfGCPY; } double GDAL_GCP_GCPZ_get( GDAL_GCP *gcp ) { return gcp->dfGCPZ; } void GDAL_GCP_GCPZ_set( GDAL_GCP *gcp, double dfGCPZ ) { gcp->dfGCPZ = dfGCPZ; } double GDAL_GCP_GCPPixel_get( GDAL_GCP *gcp ) { return gcp->dfGCPPixel; } void GDAL_GCP_GCPPixel_set( GDAL_GCP *gcp, double dfGCPPixel ) { gcp->dfGCPPixel = dfGCPPixel; } double GDAL_GCP_GCPLine_get( GDAL_GCP *gcp ) { return gcp->dfGCPLine; } void GDAL_GCP_GCPLine_set( GDAL_GCP *gcp, double dfGCPLine ) { gcp->dfGCPLine = dfGCPLine; } const char * GDAL_GCP_Info_get( GDAL_GCP *gcp ) { return gcp->pszInfo; } void GDAL_GCP_Info_set( GDAL_GCP *gcp, const char * pszInfo ) { if ( gcp->pszInfo ) CPLFree( gcp->pszInfo ); gcp->pszInfo = CPLStrdup(pszInfo); } const char * GDAL_GCP_Id_get( GDAL_GCP *gcp ) { return gcp->pszId; } void GDAL_GCP_Id_set( GDAL_GCP *gcp, const char * pszId ) { if ( gcp->pszId ) CPLFree( gcp->pszId ); gcp->pszId = CPLStrdup(pszId); } /* Duplicate, but transposed names for C# because * the C# module outputs backwards names */ double GDAL_GCP_get_GCPX( GDAL_GCP *gcp ) { return gcp->dfGCPX; } void GDAL_GCP_set_GCPX( GDAL_GCP *gcp, double dfGCPX ) { gcp->dfGCPX = dfGCPX; } double GDAL_GCP_get_GCPY( GDAL_GCP *gcp ) { return gcp->dfGCPY; } void GDAL_GCP_set_GCPY( GDAL_GCP *gcp, double dfGCPY ) { gcp->dfGCPY = dfGCPY; } double GDAL_GCP_get_GCPZ( GDAL_GCP *gcp ) { return gcp->dfGCPZ; } void GDAL_GCP_set_GCPZ( GDAL_GCP *gcp, double dfGCPZ ) { gcp->dfGCPZ = dfGCPZ; } double GDAL_GCP_get_GCPPixel( GDAL_GCP *gcp ) { return gcp->dfGCPPixel; } void GDAL_GCP_set_GCPPixel( GDAL_GCP *gcp, double dfGCPPixel ) { gcp->dfGCPPixel = dfGCPPixel; } double GDAL_GCP_get_GCPLine( GDAL_GCP *gcp ) { return gcp->dfGCPLine; } void GDAL_GCP_set_GCPLine( GDAL_GCP *gcp, double dfGCPLine ) { gcp->dfGCPLine = dfGCPLine; } const char * GDAL_GCP_get_Info( GDAL_GCP *gcp ) { return gcp->pszInfo; } void GDAL_GCP_set_Info( GDAL_GCP *gcp, const char * pszInfo ) { if ( gcp->pszInfo ) CPLFree( gcp->pszInfo ); gcp->pszInfo = CPLStrdup(pszInfo); } const char * GDAL_GCP_get_Id( GDAL_GCP *gcp ) { return gcp->pszId; } void GDAL_GCP_set_Id( GDAL_GCP *gcp, const char * pszId ) { if ( gcp->pszId ) CPLFree( gcp->pszId ); gcp->pszId = CPLStrdup(pszId); } #define t_output_helper SWIG_Python_AppendOutput static PyObject * CreateTupleFromDoubleArray( double *first, unsigned int size ) { PyObject *out = PyTuple_New( size ); for( unsigned int i=0; i<size; i++ ) { PyObject *val = PyFloat_FromDouble( *first ); ++first; PyTuple_SetItem( out, i, val ); } return out; } #include "gdal.h" typedef struct { CPLVirtualMem *vmem; int bAuto; GDALDataType eBufType; int bIsBandSequential; int bReadOnly; int nBufXSize; int nBufYSize; int nBandCount; GDALTileOrganization eTileOrganization; int nTileXSize; int nTileYSize; int nPixelSpace; /* if bAuto == TRUE */ GIntBig nLineSpace; /* if bAuto == TRUE */ } CPLVirtualMemShadow; SWIGINTERN void delete_CPLVirtualMemShadow(CPLVirtualMemShadow *self){ CPLVirtualMemFree( self->vmem ); free(self); } SWIGINTERN void CPLVirtualMemShadow_GetAddr(CPLVirtualMemShadow *self,void **pptr,size_t *pnsize,GDALDataType *pdatatype,int *preadonly){ *pptr = CPLVirtualMemGetAddr( self->vmem ); *pnsize = CPLVirtualMemGetSize( self->vmem ); *pdatatype = self->eBufType; *preadonly = self->bReadOnly; } SWIGINTERN int SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) { if (PyInt_Check(obj)) { long v = PyInt_AsLong(obj); if (v >= 0) { if (val) *val = v; return SWIG_OK; } else { return SWIG_OverflowError; } } else if (PyLong_Check(obj)) { unsigned long v = PyLong_AsUnsignedLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_OK; } else { PyErr_Clear(); } } #ifdef SWIG_PYTHON_CAST_MODE { int dispatch = 0; unsigned long v = PyLong_AsUnsignedLong(obj); if (!PyErr_Occurred()) { if (val) *val = v; return SWIG_AddCast(SWIG_OK); } else { PyErr_Clear(); } if (!dispatch) { double d; int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { if (val) *val = (unsigned long)(d); return res; } } } #endif return SWIG_TypeError; } SWIGINTERNINLINE int SWIG_AsVal_size_t (PyObject * obj, size_t *val) { unsigned long v; int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); return res; } SWIGINTERN void CPLVirtualMemShadow_Pin(CPLVirtualMemShadow *self,size_t start_offset=0,size_t nsize=0,int bWriteOp=0){ if( nsize == 0 || start_offset + nsize >= CPLVirtualMemGetSize( self->vmem ) ) nsize = CPLVirtualMemGetSize( self->vmem ) - start_offset; char* start_addr = (char*)CPLVirtualMemGetAddr( self->vmem ) + start_offset; CPLVirtualMemPin(self->vmem, start_addr, nsize, bWriteOp); } /* Returned size is in bytes or 0 if an error occured */ static GIntBig ComputeDatasetRasterIOSize (int buf_xsize, int buf_ysize, int nPixelSize, int nBands, int* bandMap, int nBandMapArrayLength, int nPixelSpace, int nLineSpace, int nBandSpace, int bSpacingShouldBeMultipleOfPixelSize ) { #if SIZEOF_VOIDP == 8 const GIntBig MAX_INT = (((GIntBig)0x7fffffff) << 32) | 0xffffffff; #else const GIntBig MAX_INT = 0x7fffffff; #endif const GIntBig MAX_INT32 = 0x7fffffff; if (buf_xsize <= 0 || buf_ysize <= 0) { CPLError(CE_Failure, CPLE_IllegalArg, "Illegal values for buffer size"); return 0; } if (nPixelSpace < 0 || nLineSpace < 0 || nBandSpace < 0) { CPLError(CE_Failure, CPLE_IllegalArg, "Illegal values for space arguments"); return 0; } if (nPixelSize == 0) { CPLError(CE_Failure, CPLE_IllegalArg, "Illegal value for data type"); return 0; } if( nPixelSpace == 0 ) nPixelSpace = nPixelSize; else if ( bSpacingShouldBeMultipleOfPixelSize && (nPixelSpace % nPixelSize) != 0 ) { CPLError(CE_Failure, CPLE_IllegalArg, "nPixelSpace should be a multiple of nPixelSize"); return 0; } if( nLineSpace == 0 ) { if (nPixelSpace > MAX_INT32 / buf_xsize) { CPLError(CE_Failure, CPLE_IllegalArg, "Integer overflow for nLineSpace"); return 0; } nLineSpace = nPixelSpace * buf_xsize; } else if ( bSpacingShouldBeMultipleOfPixelSize && (nLineSpace % nPixelSize) != 0 ) { CPLError(CE_Failure, CPLE_IllegalArg, "nLineSpace should be a multiple of nPixelSize"); return 0; } if( nBandSpace == 0 ) { if (nLineSpace > MAX_INT32 / buf_ysize) { CPLError(CE_Failure, CPLE_IllegalArg, "Integer overflow for nBandSpace"); return 0; } nBandSpace = nLineSpace * buf_ysize; } else if ( bSpacingShouldBeMultipleOfPixelSize && (nBandSpace % nPixelSize) != 0 ) { CPLError(CE_Failure, CPLE_IllegalArg, "nLineSpace should be a multiple of nPixelSize"); return 0; } if (nBands <= 0 || (bandMap != NULL && nBands > nBandMapArrayLength)) { CPLError(CE_Failure, CPLE_IllegalArg, "Invalid band count"); return 0; } GIntBig nRet = (GIntBig)(buf_ysize - 1) * nLineSpace + (GIntBig)(buf_xsize - 1) * nPixelSpace + (GIntBig)(nBands - 1) * nBandSpace + nPixelSize; if (nRet > MAX_INT) { CPLError(CE_Failure, CPLE_IllegalArg, "Integer overflow"); return 0; } return nRet; } typedef struct { GDALAsyncReaderH hAsyncReader; void *pyObject; } GDALAsyncReaderWrapper; typedef void* GDALAsyncReaderWrapperH; static GDALAsyncReaderH AsyncReaderWrapperGetReader(GDALAsyncReaderWrapperH hWrapper) { GDALAsyncReaderWrapper* psWrapper = (GDALAsyncReaderWrapper*)hWrapper; if (psWrapper->hAsyncReader == NULL) { CPLError(CE_Failure, CPLE_AppDefined, "AsyncReader object is defunct"); } return psWrapper->hAsyncReader; } #if defined(SWIGPYTHON) static void* AsyncReaderWrapperGetPyObject(GDALAsyncReaderWrapperH hWrapper) { GDALAsyncReaderWrapper* psWrapper = (GDALAsyncReaderWrapper*)hWrapper; return psWrapper->pyObject; } #endif static void DeleteAsyncReaderWrapper(GDALAsyncReaderWrapperH hWrapper) { GDALAsyncReaderWrapper* psWrapper = (GDALAsyncReaderWrapper*)hWrapper; if (psWrapper->hAsyncReader != NULL) { CPLError(CE_Failure, CPLE_AppDefined, "Native AsyncReader object will leak. EndAsyncReader() should have been called before"); } CPLFree(psWrapper); } static GDALAsyncReaderWrapper* CreateAsyncReaderWrapper(GDALAsyncReaderH hAsyncReader, void *pyObject) { GDALAsyncReaderWrapper* psWrapper = (GDALAsyncReaderWrapper* )CPLMalloc(sizeof(GDALAsyncReaderWrapper)); psWrapper->hAsyncReader = hAsyncReader; psWrapper->pyObject = pyObject; Py_INCREF((PyObject*) psWrapper->pyObject); return psWrapper; } static void DisableAsyncReaderWrapper(GDALAsyncReaderWrapperH hWrapper) { GDALAsyncReaderWrapper* psWrapper = (GDALAsyncReaderWrapper*)hWrapper; if (psWrapper->pyObject) { Py_XDECREF((PyObject*) psWrapper->pyObject); } psWrapper->pyObject = NULL; psWrapper->hAsyncReader = NULL; } SWIGINTERN void delete_GDALAsyncReaderShadow(GDALAsyncReaderShadow *self){ DeleteAsyncReaderWrapper(self); } SWIGINTERN GDALAsyncStatusType GDALAsyncReaderShadow_GetNextUpdatedRegion(GDALAsyncReaderShadow *self,double timeout,int *xoff,int *yoff,int *buf_xsize,int *buf_ysize){ GDALAsyncReaderH hReader = AsyncReaderWrapperGetReader(self); if (hReader == NULL) { *xoff = 0; *yoff = 0; *buf_xsize = 0; *buf_ysize = 0; return GARIO_ERROR; } return GDALARGetNextUpdatedRegion(hReader, timeout, xoff, yoff, buf_xsize, buf_ysize ); } SWIGINTERN void GDALAsyncReaderShadow_GetBuffer(GDALAsyncReaderShadow *self,void **ppRetPyObject){ GDALAsyncReaderH hReader = AsyncReaderWrapperGetReader(self); if (hReader == NULL) { *ppRetPyObject = NULL; return; } *ppRetPyObject = AsyncReaderWrapperGetPyObject(self); Py_INCREF((PyObject*)*ppRetPyObject); } SWIGINTERN int GDALAsyncReaderShadow_LockBuffer(GDALAsyncReaderShadow *self,double timeout){ GDALAsyncReaderH hReader = AsyncReaderWrapperGetReader(self); if (hReader == NULL) { return 0; } return GDALARLockBuffer(hReader,timeout); } SWIGINTERN void GDALAsyncReaderShadow_UnlockBuffer(GDALAsyncReaderShadow *self){ GDALAsyncReaderH hReader = AsyncReaderWrapperGetReader(self); if (hReader == NULL) { return; } GDALARUnlockBuffer(hReader); } SWIGINTERN void delete_GDALDatasetShadow(GDALDatasetShadow *self){ if ( GDALDereferenceDataset( self ) <= 0 ) { GDALClose(self); } } SWIGINTERN GDALDriverShadow *GDALDatasetShadow_GetDriver(GDALDatasetShadow *self){ return (GDALDriverShadow*) GDALGetDatasetDriver( self ); } SWIGINTERN GDALRasterBandShadow *GDALDatasetShadow_GetRasterBand(GDALDatasetShadow *self,int nBand){ return (GDALRasterBandShadow*) GDALGetRasterBand( self, nBand ); } SWIGINTERN char const *GDALDatasetShadow_GetProjection(GDALDatasetShadow *self){ return GDALGetProjectionRef( self ); } SWIGINTERN char const *GDALDatasetShadow_GetProjectionRef(GDALDatasetShadow *self){ return GDALGetProjectionRef( self ); } SWIGINTERN CPLErr GDALDatasetShadow_SetProjection(GDALDatasetShadow *self,char const *prj){ return GDALSetProjection( self, prj ); } SWIGINTERN void GDALDatasetShadow_GetGeoTransform(GDALDatasetShadow *self,double argout[6],int *isvalid,int *can_return_null=0){ if (can_return_null && *can_return_null) { *isvalid = (GDALGetGeoTransform( self, argout ) == CE_None ); } else { *isvalid = TRUE; if ( GDALGetGeoTransform( self, argout ) != CE_None ) { argout[0] = 0.0; argout[1] = 1.0; argout[2] = 0.0; argout[3] = 0.0; argout[4] = 0.0; argout[5] = 1.0; } } } SWIGINTERN CPLErr GDALDatasetShadow_SetGeoTransform(GDALDatasetShadow *self,double argin[6]){ return GDALSetGeoTransform( self, argin ); } SWIGINTERN int GDALDatasetShadow_BuildOverviews(GDALDatasetShadow *self,char const *resampling="NEAREST",int overviewlist=0,int *pOverviews=0,GDALProgressFunc callback=NULL,void *callback_data=NULL){ return GDALBuildOverviews( self, resampling ? resampling : "NEAREST", overviewlist, pOverviews, 0, 0, callback, callback_data); } SWIGINTERN int GDALDatasetShadow_GetGCPCount(GDALDatasetShadow *self){ return GDALGetGCPCount( self ); } SWIGINTERN char const *GDALDatasetShadow_GetGCPProjection(GDALDatasetShadow *self){ return GDALGetGCPProjection( self ); } SWIGINTERN void GDALDatasetShadow_GetGCPs(GDALDatasetShadow *self,int *nGCPs,GDAL_GCP const **pGCPs){ *nGCPs = GDALGetGCPCount( self ); *pGCPs = GDALGetGCPs( self ); } SWIGINTERN CPLErr GDALDatasetShadow_SetGCPs(GDALDatasetShadow *self,int nGCPs,GDAL_GCP const *pGCPs,char const *pszGCPProjection){ return GDALSetGCPs( self, nGCPs, pGCPs, pszGCPProjection ); } SWIGINTERN void GDALDatasetShadow_FlushCache(GDALDatasetShadow *self){ GDALFlushCache( self ); } SWIGINTERN CPLErr GDALDatasetShadow_AddBand(GDALDatasetShadow *self,GDALDataType datatype=GDT_Byte,char **options=0){ return GDALAddBand( self, datatype, options ); } SWIGINTERN CPLErr GDALDatasetShadow_CreateMaskBand(GDALDatasetShadow *self,int nFlags){ return GDALCreateDatasetMaskBand( self, nFlags ); } SWIGINTERN char **GDALDatasetShadow_GetFileList(GDALDatasetShadow *self){ return GDALGetFileList( self ); } SWIGINTERN CPLErr GDALDatasetShadow_WriteRaster(GDALDatasetShadow *self,int xoff,int yoff,int xsize,int ysize,GIntBig buf_len,char *buf_string,int *buf_xsize=0,int *buf_ysize=0,GDALDataType *buf_type=0,int band_list=0,int *pband_list=0,int *buf_pixel_space=0,int *buf_line_space=0,int *buf_band_space=0){ CPLErr eErr; int nxsize = (buf_xsize==0) ? xsize : *buf_xsize; int nysize = (buf_ysize==0) ? ysize : *buf_ysize; GDALDataType ntype; if ( buf_type != 0 ) { ntype = (GDALDataType) *buf_type; } else { int lastband = GDALGetRasterCount( self ) - 1; if (lastband < 0) return CE_Failure; ntype = GDALGetRasterDataType( GDALGetRasterBand( self, lastband ) ); } int pixel_space = (buf_pixel_space == 0) ? 0 : *buf_pixel_space; int line_space = (buf_line_space == 0) ? 0 : *buf_line_space; int band_space = (buf_band_space == 0) ? 0 : *buf_band_space; GIntBig min_buffer_size = ComputeDatasetRasterIOSize (nxsize, nysize, GDALGetDataTypeSize( ntype ) / 8, band_list ? band_list : GDALGetRasterCount(self), pband_list, band_list, pixel_space, line_space, band_space, FALSE); if (min_buffer_size == 0) return CE_Failure; if ( buf_len < min_buffer_size ) { CPLError(CE_Failure, CPLE_AppDefined, "Buffer too small"); return CE_Failure; } eErr = GDALDatasetRasterIO( self, GF_Write, xoff, yoff, xsize, ysize, (void*) buf_string, nxsize, nysize, ntype, band_list, pband_list, pixel_space, line_space, band_space ); return eErr; } SWIGINTERN GDALAsyncReaderShadow *GDALDatasetShadow_BeginAsyncReader(GDALDatasetShadow *self,int xOff,int yOff,int xSize,int ySize,int buf_len,char *buf_string,void *pyObject,int buf_xsize,int buf_ysize,GDALDataType bufType=(GDALDataType) 0,int band_list=0,int *pband_list=0,int nPixelSpace=0,int nLineSpace=0,int nBandSpace=0,char **options=0){ if ((options != NULL) && (buf_xsize ==0) && (buf_ysize == 0)) { // calculate an appropriate buffer size const char* pszLevel = CSLFetchNameValue(options, "LEVEL"); if (pszLevel) { // round up int nLevel = atoi(pszLevel); int nRes = 2 << (nLevel - 1); buf_xsize = ceil(xSize / (1.0 * nRes)); buf_ysize = ceil(ySize / (1.0 * nRes)); } } int nxsize = (buf_xsize == 0) ? xSize : buf_xsize; int nysize = (buf_ysize == 0) ? ySize : buf_ysize; GDALDataType ntype; if (bufType != 0) { ntype = (GDALDataType) bufType; } else { ntype = GDT_Byte; } int nBCount = (band_list) != 0 ? band_list : GDALGetRasterCount(self); int nMinSize = nxsize * nysize * nBCount * (GDALGetDataTypeSize(ntype) / 8); if (buf_string == NULL || buf_len < nMinSize) { CPLError(CE_Failure, CPLE_AppDefined, "Buffer is too small"); return NULL; } bool myBandList = false; int* pBandList; if (band_list != 0){ myBandList = false; pBandList = pband_list; } else { myBandList = true; pBandList = (int*)CPLMalloc(sizeof(int) * nBCount); for (int i = 0; i < nBCount; ++i) { pBandList[i] = i + 1; } } GDALAsyncReaderH hAsyncReader = GDALBeginAsyncReader(self, xOff, yOff, xSize, ySize, (void*) buf_string, nxsize, nysize, ntype, nBCount, pBandList, nPixelSpace, nLineSpace, nBandSpace, options); if (hAsyncReader) { return (GDALAsyncReader*) CreateAsyncReaderWrapper(hAsyncReader, pyObject); } else { return NULL; } if ( myBandList ) { CPLFree( pBandList ); } } SWIGINTERN void GDALDatasetShadow_EndAsyncReader(GDALDatasetShadow *self,GDALAsyncReaderShadow *ario){ if( ario == NULL ) return; GDALAsyncReaderH hReader = AsyncReaderWrapperGetReader(ario); if (hReader == NULL) { return; } GDALEndAsyncReader(self, hReader); DisableAsyncReaderWrapper(ario); } SWIGINTERN CPLVirtualMemShadow *GDALDatasetShadow_GetVirtualMem(GDALDatasetShadow *self,GDALRWFlag eRWFlag,int nXOff,int nYOff,int nXSize,int nYSize,int nBufXSize,int nBufYSize,GDALDataType eBufType,int band_list,int *pband_list,int bIsBandSequential,size_t nCacheSize,size_t nPageSizeHint,char **options=NULL){ int nPixelSpace; GIntBig nBandSpace; if( bIsBandSequential != 0 && bIsBandSequential != 1 ) return NULL; if( band_list == 0 ) return NULL; if( bIsBandSequential || band_list == 1 ) { nPixelSpace = 0; nBandSpace = 0; } else { nBandSpace = GDALGetDataTypeSize(eBufType) / 8; nPixelSpace = nBandSpace * band_list; } CPLVirtualMem* vmem = GDALDatasetGetVirtualMem( self, eRWFlag, nXOff, nYOff, nXSize, nYSize, nBufXSize, nBufYSize, eBufType, band_list, pband_list, nPixelSpace, 0, nBandSpace, nCacheSize, nPageSizeHint, FALSE, options ); if( vmem == NULL ) return NULL; CPLVirtualMemShadow* vmemshadow = (CPLVirtualMemShadow*)calloc(1, sizeof(CPLVirtualMemShadow)); vmemshadow->vmem = vmem; vmemshadow->eBufType = eBufType; vmemshadow->bIsBandSequential = bIsBandSequential; vmemshadow->bReadOnly = (eRWFlag == GF_Read); vmemshadow->nBufXSize = nBufXSize; vmemshadow->nBufYSize = nBufYSize; vmemshadow->nBandCount = band_list; return vmemshadow; } SWIGINTERN CPLVirtualMemShadow *GDALDatasetShadow_GetTiledVirtualMem(GDALDatasetShadow *self,GDALRWFlag eRWFlag,int nXOff,int nYOff,int nXSize,int nYSize,int nTileXSize,int nTileYSize,GDALDataType eBufType,int band_list,int *pband_list,GDALTileOrganization eTileOrganization,size_t nCacheSize,char **options=NULL){ if( band_list == 0 ) return NULL; CPLVirtualMem* vmem = GDALDatasetGetTiledVirtualMem( self, eRWFlag, nXOff, nYOff, nXSize, nYSize, nTileXSize, nTileYSize, eBufType, band_list, pband_list, eTileOrganization, nCacheSize, FALSE, options ); if( vmem == NULL ) return NULL; CPLVirtualMemShadow* vmemshadow = (CPLVirtualMemShadow*)calloc(1, sizeof(CPLVirtualMemShadow)); vmemshadow->vmem = vmem; vmemshadow->eBufType = eBufType; vmemshadow->bIsBandSequential = -1; vmemshadow->bReadOnly = (eRWFlag == GF_Read); vmemshadow->nBufXSize = nXSize; vmemshadow->nBufYSize = nYSize; vmemshadow->eTileOrganization = eTileOrganization; vmemshadow->nTileXSize = nTileXSize; vmemshadow->nTileYSize = nTileYSize; vmemshadow->nBandCount = band_list; return vmemshadow; } SWIGINTERN CPLErr GDALDatasetShadow_ReadRaster1(GDALDatasetShadow *self,int xoff,int yoff,int xsize,int ysize,void **buf,int *buf_xsize=0,int *buf_ysize=0,GDALDataType *buf_type=0,int band_list=0,int *pband_list=0,int *buf_pixel_space=0,int *buf_line_space=0,int *buf_band_space=0){ int nxsize = (buf_xsize==0) ? xsize : *buf_xsize; int nysize = (buf_ysize==0) ? ysize : *buf_ysize; GDALDataType ntype; if ( buf_type != 0 ) { ntype = (GDALDataType) *buf_type; } else { int lastband = GDALGetRasterCount( self ) - 1; if (lastband < 0) { *buf = NULL; return CE_Failure; } ntype = GDALGetRasterDataType( GDALGetRasterBand( self, lastband ) ); } int pixel_space = (buf_pixel_space == 0) ? 0 : *buf_pixel_space; int line_space = (buf_line_space == 0) ? 0 : *buf_line_space; int band_space = (buf_band_space == 0) ? 0 : *buf_band_space; GIntBig buf_size = ComputeDatasetRasterIOSize (nxsize, nysize, GDALGetDataTypeSize( ntype ) / 8, band_list ? band_list : GDALGetRasterCount(self), pband_list, band_list, pixel_space, line_space, band_space, FALSE); if (buf_size == 0) { *buf = NULL; return CE_Failure; } #if PY_VERSION_HEX >= 0x03000000 *buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return CE_Failure; } char *data = PyBytes_AsString( (PyObject *)*buf ); #else *buf = (void *)PyString_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return CE_Failure; } char *data = PyString_AsString( (PyObject *)*buf ); #endif CPLErr eErr = GDALDatasetRasterIO(self, GF_Read, xoff, yoff, xsize, ysize, (void*) data, nxsize, nysize, ntype, band_list, pband_list, pixel_space, line_space, band_space ); if (eErr == CE_Failure) { Py_DECREF((PyObject*)*buf); *buf = NULL; } return eErr; } int GDALDatasetShadow_RasterXSize_get( GDALDatasetShadow *h ) { return GDALGetRasterXSize( h ); } int GDALDatasetShadow_RasterYSize_get( GDALDatasetShadow *h ) { return GDALGetRasterYSize( h ); } int GDALDatasetShadow_RasterCount_get( GDALDatasetShadow *h ) { return GDALGetRasterCount( h ); } /* Returned size is in bytes or 0 if an error occured */ static GIntBig ComputeBandRasterIOSize (int buf_xsize, int buf_ysize, int nPixelSize, int nPixelSpace, int nLineSpace, int bSpacingShouldBeMultipleOfPixelSize ) { #if SIZEOF_VOIDP == 8 const GIntBig MAX_INT = (((GIntBig)0x7fffffff) << 32) | 0xffffffff; #else const GIntBig MAX_INT = 0x7fffffff; #endif const GIntBig MAX_INT32 = 0x7fffffff; if (buf_xsize <= 0 || buf_ysize <= 0) { CPLError(CE_Failure, CPLE_IllegalArg, "Illegal values for buffer size"); return 0; } if (nPixelSpace < 0 || nLineSpace < 0) { CPLError(CE_Failure, CPLE_IllegalArg, "Illegal values for space arguments"); return 0; } if (nPixelSize == 0) { CPLError(CE_Failure, CPLE_IllegalArg, "Illegal value for data type"); return 0; } if( nPixelSpace == 0 ) nPixelSpace = nPixelSize; else if ( bSpacingShouldBeMultipleOfPixelSize && (nPixelSpace % nPixelSize) != 0 ) { CPLError(CE_Failure, CPLE_IllegalArg, "nPixelSpace should be a multiple of nPixelSize"); return 0; } if( nLineSpace == 0 ) { if (nPixelSpace > MAX_INT32 / buf_xsize) { CPLError(CE_Failure, CPLE_IllegalArg, "Integer overflow for nLineSpace"); return 0; } nLineSpace = nPixelSpace * buf_xsize; } else if ( bSpacingShouldBeMultipleOfPixelSize && (nLineSpace % nPixelSize) != 0 ) { CPLError(CE_Failure, CPLE_IllegalArg, "nLineSpace should be a multiple of nPixelSize"); return 0; } GIntBig nRet = (GIntBig)(buf_ysize - 1) * nLineSpace + (GIntBig)(buf_xsize - 1) * nPixelSpace + nPixelSize; if (nRet > MAX_INT) { CPLError(CE_Failure, CPLE_IllegalArg, "Integer overflow"); return 0; } return nRet; } static CPLErr WriteRaster_internal( GDALRasterBandShadow *obj, int xoff, int yoff, int xsize, int ysize, int buf_xsize, int buf_ysize, GDALDataType buf_type, GIntBig buf_size, char *buffer, int pixel_space, int line_space) { GIntBig min_buffer_size = ComputeBandRasterIOSize (buf_xsize, buf_ysize, GDALGetDataTypeSize( buf_type ) / 8, pixel_space, line_space, FALSE ); if ( min_buffer_size == 0 ) return CE_Failure; if ( buf_size < min_buffer_size ) { CPLError(CE_Failure, CPLE_AppDefined, "Buffer too small"); return CE_Failure; } return GDALRasterIO( obj, GF_Write, xoff, yoff, xsize, ysize, (void *) buffer, buf_xsize, buf_ysize, buf_type, pixel_space, line_space ); } SWIGINTERN int GDALRasterBandShadow_GetBand(GDALRasterBandShadow *self){ return GDALGetBandNumber(self); } SWIGINTERN void GDALRasterBandShadow_GetBlockSize(GDALRasterBandShadow *self,int *pnBlockXSize,int *pnBlockYSize){ GDALGetBlockSize(self, pnBlockXSize, pnBlockYSize); } SWIGINTERN GDALColorInterp GDALRasterBandShadow_GetColorInterpretation(GDALRasterBandShadow *self){ return GDALGetRasterColorInterpretation( self ); } SWIGINTERN GDALColorInterp GDALRasterBandShadow_GetRasterColorInterpretation(GDALRasterBandShadow *self){ return GDALGetRasterColorInterpretation( self ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetColorInterpretation(GDALRasterBandShadow *self,GDALColorInterp val){ return GDALSetRasterColorInterpretation( self, val ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetRasterColorInterpretation(GDALRasterBandShadow *self,GDALColorInterp val){ return GDALSetRasterColorInterpretation( self, val ); } SWIGINTERN void GDALRasterBandShadow_GetNoDataValue(GDALRasterBandShadow *self,double *val,int *hasval){ *val = GDALGetRasterNoDataValue( self, hasval ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetNoDataValue(GDALRasterBandShadow *self,double d){ return GDALSetRasterNoDataValue( self, d ); } SWIGINTERN char const *GDALRasterBandShadow_GetUnitType(GDALRasterBandShadow *self){ return GDALGetRasterUnitType( self ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetUnitType(GDALRasterBandShadow *self,char const *val){ return GDALSetRasterUnitType( self, val ); } SWIGINTERN char **GDALRasterBandShadow_GetRasterCategoryNames(GDALRasterBandShadow *self){ return GDALGetRasterCategoryNames( self ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetRasterCategoryNames(GDALRasterBandShadow *self,char **names){ return GDALSetRasterCategoryNames( self, names ); } SWIGINTERN void GDALRasterBandShadow_GetMinimum(GDALRasterBandShadow *self,double *val,int *hasval){ *val = GDALGetRasterMinimum( self, hasval ); } SWIGINTERN void GDALRasterBandShadow_GetMaximum(GDALRasterBandShadow *self,double *val,int *hasval){ *val = GDALGetRasterMaximum( self, hasval ); } SWIGINTERN void GDALRasterBandShadow_GetOffset(GDALRasterBandShadow *self,double *val,int *hasval){ *val = GDALGetRasterOffset( self, hasval ); } SWIGINTERN void GDALRasterBandShadow_GetScale(GDALRasterBandShadow *self,double *val,int *hasval){ *val = GDALGetRasterScale( self, hasval ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetOffset(GDALRasterBandShadow *self,double val){ return GDALSetRasterOffset( self, val ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetScale(GDALRasterBandShadow *self,double val){ return GDALSetRasterScale( self, val ); } SWIGINTERN CPLErr GDALRasterBandShadow_GetStatistics(GDALRasterBandShadow *self,int approx_ok,int force,double *min,double *max,double *mean,double *stddev){ if (min) *min = 0; if (max) *max = 0; if (mean) *mean = 0; if (stddev) *stddev = -1; /* This is the only way to recognize from Python if GetRasterStatistics() has updated the values */ return GDALGetRasterStatistics( self, approx_ok, force, min, max, mean, stddev ); } SWIGINTERN int SWIG_AsVal_bool (PyObject *obj, bool *val) { int r = PyObject_IsTrue(obj); if (r == -1) return SWIG_ERROR; if (val) *val = r ? true : false; return SWIG_OK; } SWIGINTERN CPLErr GDALRasterBandShadow_ComputeStatistics(GDALRasterBandShadow *self,bool approx_ok,double *min=NULL,double *max=NULL,double *mean=NULL,double *stddev=NULL,GDALProgressFunc callback=NULL,void *callback_data=NULL){ return GDALComputeRasterStatistics( self, approx_ok, min, max, mean, stddev, callback, callback_data ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetStatistics(GDALRasterBandShadow *self,double min,double max,double mean,double stddev){ return GDALSetRasterStatistics( self, min, max, mean, stddev ); } SWIGINTERN int GDALRasterBandShadow_GetOverviewCount(GDALRasterBandShadow *self){ return GDALGetOverviewCount( self ); } SWIGINTERN GDALRasterBandShadow *GDALRasterBandShadow_GetOverview(GDALRasterBandShadow *self,int i){ return (GDALRasterBandShadow*) GDALGetOverview( self, i ); } SWIGINTERN int GDALRasterBandShadow_Checksum(GDALRasterBandShadow *self,int xoff=0,int yoff=0,int *xsize=0,int *ysize=0){ int nxsize = (xsize!=0) ? *xsize : GDALGetRasterBandXSize( self ); int nysize = (ysize!=0) ? *ysize : GDALGetRasterBandYSize( self ); return GDALChecksumImage( self, xoff, yoff, nxsize, nysize ); } SWIGINTERN void GDALRasterBandShadow_ComputeRasterMinMax(GDALRasterBandShadow *self,double argout[2],int approx_ok=0){ GDALComputeRasterMinMax( self, approx_ok, argout ); } SWIGINTERN void GDALRasterBandShadow_ComputeBandStats(GDALRasterBandShadow *self,double argout[2],int samplestep=1){ GDALComputeBandStats( self, samplestep, argout+0, argout+1, NULL, NULL ); } SWIGINTERN CPLErr GDALRasterBandShadow_Fill(GDALRasterBandShadow *self,double real_fill,double imag_fill=0.0){ return GDALFillRaster( self, real_fill, imag_fill ); } SWIGINTERN CPLErr GDALRasterBandShadow_WriteRaster(GDALRasterBandShadow *self,int xoff,int yoff,int xsize,int ysize,GIntBig buf_len,char *buf_string,int *buf_xsize=0,int *buf_ysize=0,int *buf_type=0,int *buf_pixel_space=0,int *buf_line_space=0){ int nxsize = (buf_xsize==0) ? xsize : *buf_xsize; int nysize = (buf_ysize==0) ? ysize : *buf_ysize; GDALDataType ntype = (buf_type==0) ? GDALGetRasterDataType(self) : (GDALDataType)*buf_type; int pixel_space = (buf_pixel_space == 0) ? 0 : *buf_pixel_space; int line_space = (buf_line_space == 0) ? 0 : *buf_line_space; return WriteRaster_internal( self, xoff, yoff, xsize, ysize, nxsize, nysize, ntype, buf_len, buf_string, pixel_space, line_space ); } SWIGINTERN void GDALRasterBandShadow_FlushCache(GDALRasterBandShadow *self){ GDALFlushRasterCache( self ); } SWIGINTERN GDALColorTableShadow *GDALRasterBandShadow_GetRasterColorTable(GDALRasterBandShadow *self){ return (GDALColorTableShadow*) GDALGetRasterColorTable( self ); } SWIGINTERN GDALColorTableShadow *GDALRasterBandShadow_GetColorTable(GDALRasterBandShadow *self){ return (GDALColorTableShadow*) GDALGetRasterColorTable( self ); } SWIGINTERN int GDALRasterBandShadow_SetRasterColorTable(GDALRasterBandShadow *self,GDALColorTableShadow *arg){ return GDALSetRasterColorTable( self, arg ); } SWIGINTERN int GDALRasterBandShadow_SetColorTable(GDALRasterBandShadow *self,GDALColorTableShadow *arg){ return GDALSetRasterColorTable( self, arg ); } SWIGINTERN GDALRasterAttributeTableShadow *GDALRasterBandShadow_GetDefaultRAT(GDALRasterBandShadow *self){ return (GDALRasterAttributeTableShadow*) GDALGetDefaultRAT(self); } SWIGINTERN int GDALRasterBandShadow_SetDefaultRAT(GDALRasterBandShadow *self,GDALRasterAttributeTableShadow *table){ return GDALSetDefaultRAT(self, table); } SWIGINTERN GDALRasterBandShadow *GDALRasterBandShadow_GetMaskBand(GDALRasterBandShadow *self){ return (GDALRasterBandShadow *) GDALGetMaskBand( self ); } SWIGINTERN int GDALRasterBandShadow_GetMaskFlags(GDALRasterBandShadow *self){ return GDALGetMaskFlags( self ); } SWIGINTERN CPLErr GDALRasterBandShadow_CreateMaskBand(GDALRasterBandShadow *self,int nFlags){ return GDALCreateMaskBand( self, nFlags ); } SWIGINTERN CPLErr GDALRasterBandShadow_GetHistogram(GDALRasterBandShadow *self,double min=-0.5,double max=255.5,int buckets=256,int *panHistogram=NULL,int include_out_of_range=0,int approx_ok=1,GDALProgressFunc callback=NULL,void *callback_data=NULL){ CPLErrorReset(); CPLErr err = GDALGetRasterHistogram( self, min, max, buckets, panHistogram, include_out_of_range, approx_ok, callback, callback_data ); return err; } SWIGINTERN CPLErr GDALRasterBandShadow_GetDefaultHistogram(GDALRasterBandShadow *self,double *min_ret=NULL,double *max_ret=NULL,int *buckets_ret=NULL,int **ppanHistogram=NULL,int force=1,GDALProgressFunc callback=NULL,void *callback_data=NULL){ return GDALGetDefaultHistogram( self, min_ret, max_ret, buckets_ret, ppanHistogram, force, callback, callback_data ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetDefaultHistogram(GDALRasterBandShadow *self,double min,double max,int buckets_in,int *panHistogram_in){ return GDALSetDefaultHistogram( self, min, max, buckets_in, panHistogram_in ); } SWIGINTERN bool GDALRasterBandShadow_HasArbitraryOverviews(GDALRasterBandShadow *self){ return (GDALHasArbitraryOverviews( self ) != 0) ? true : false; } SWIGINTERNINLINE PyObject* SWIG_From_bool (bool value) { return PyBool_FromLong(value ? 1 : 0); } SWIGINTERN char **GDALRasterBandShadow_GetCategoryNames(GDALRasterBandShadow *self){ return GDALGetRasterCategoryNames( self ); } SWIGINTERN CPLErr GDALRasterBandShadow_SetCategoryNames(GDALRasterBandShadow *self,char **papszCategoryNames){ return GDALSetRasterCategoryNames( self, papszCategoryNames ); } SWIGINTERN CPLVirtualMemShadow *GDALRasterBandShadow_GetVirtualMem(GDALRasterBandShadow *self,GDALRWFlag eRWFlag,int nXOff,int nYOff,int nXSize,int nYSize,int nBufXSize,int nBufYSize,GDALDataType eBufType,size_t nCacheSize,size_t nPageSizeHint,char **options=NULL){ CPLVirtualMem* vmem = GDALRasterBandGetVirtualMem( self, eRWFlag, nXOff, nYOff, nXSize, nYSize, nBufXSize, nBufYSize, eBufType, 0, 0, nCacheSize, nPageSizeHint, FALSE, options ); if( vmem == NULL ) return NULL; CPLVirtualMemShadow* vmemshadow = (CPLVirtualMemShadow*)calloc(1, sizeof(CPLVirtualMemShadow)); vmemshadow->vmem = vmem; vmemshadow->eBufType = eBufType; vmemshadow->bIsBandSequential = TRUE; vmemshadow->bReadOnly = (eRWFlag == GF_Read); vmemshadow->nBufXSize = nBufXSize; vmemshadow->nBufYSize = nBufYSize; vmemshadow->nBandCount = 1; return vmemshadow; } SWIGINTERN CPLVirtualMemShadow *GDALRasterBandShadow_GetVirtualMemAuto(GDALRasterBandShadow *self,GDALRWFlag eRWFlag,char **options=NULL){ int nPixelSpace; GIntBig nLineSpace; CPLVirtualMem* vmem = GDALGetVirtualMemAuto( self, eRWFlag, &nPixelSpace, &nLineSpace, options ); if( vmem == NULL ) return NULL; CPLVirtualMemShadow* vmemshadow = (CPLVirtualMemShadow*)calloc(1, sizeof(CPLVirtualMemShadow)); vmemshadow->vmem = vmem; vmemshadow->eBufType = GDALGetRasterDataType( self ); vmemshadow->bAuto = TRUE; vmemshadow->bReadOnly = (eRWFlag == GF_Read); vmemshadow->nBandCount = 1; vmemshadow->nPixelSpace = nPixelSpace; vmemshadow->nLineSpace = nLineSpace; vmemshadow->nBufXSize = GDALGetRasterBandXSize(self); vmemshadow->nBufYSize = GDALGetRasterBandYSize(self); return vmemshadow; } SWIGINTERN CPLVirtualMemShadow *GDALRasterBandShadow_GetTiledVirtualMem(GDALRasterBandShadow *self,GDALRWFlag eRWFlag,int nXOff,int nYOff,int nXSize,int nYSize,int nTileXSize,int nTileYSize,GDALDataType eBufType,size_t nCacheSize,char **options=NULL){ CPLVirtualMem* vmem = GDALRasterBandGetTiledVirtualMem( self, eRWFlag, nXOff, nYOff, nXSize, nYSize, nTileXSize, nTileYSize, eBufType, nCacheSize, FALSE, options ); if( vmem == NULL ) return NULL; CPLVirtualMemShadow* vmemshadow = (CPLVirtualMemShadow*)calloc(1, sizeof(CPLVirtualMemShadow)); vmemshadow->vmem = vmem; vmemshadow->eBufType = eBufType; vmemshadow->bIsBandSequential = -1; vmemshadow->bReadOnly = (eRWFlag == GF_Read); vmemshadow->nBufXSize = nXSize; vmemshadow->nBufYSize = nYSize; vmemshadow->eTileOrganization = GTO_BSQ; vmemshadow->nTileXSize = nTileXSize; vmemshadow->nTileYSize = nTileYSize; vmemshadow->nBandCount = 1; return vmemshadow; } SWIGINTERN CPLErr GDALRasterBandShadow_ReadRaster1(GDALRasterBandShadow *self,int xoff,int yoff,int xsize,int ysize,void **buf,int *buf_xsize=0,int *buf_ysize=0,int *buf_type=0,int *buf_pixel_space=0,int *buf_line_space=0){ int nxsize = (buf_xsize==0) ? xsize : *buf_xsize; int nysize = (buf_ysize==0) ? ysize : *buf_ysize; GDALDataType ntype = (buf_type==0) ? GDALGetRasterDataType(self) : (GDALDataType)*buf_type; int pixel_space = (buf_pixel_space == 0) ? 0 : *buf_pixel_space; int line_space = (buf_line_space == 0) ? 0 : *buf_line_space; GIntBig buf_size = ComputeBandRasterIOSize( nxsize, nysize, GDALGetDataTypeSize( ntype ) / 8, pixel_space, line_space, FALSE ); if (buf_size == 0) { *buf = NULL; return CE_Failure; } #if PY_VERSION_HEX >= 0x03000000 *buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { *buf = Py_None; CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return CE_Failure; } char *data = PyBytes_AsString( (PyObject *)*buf ); #else *buf = (void *)PyString_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return CE_Failure; } char *data = PyString_AsString( (PyObject *)*buf ); #endif CPLErr eErr = GDALRasterIO( self, GF_Read, xoff, yoff, xsize, ysize, (void *) data, nxsize, nysize, ntype, pixel_space, line_space ); if (eErr == CE_Failure) { Py_DECREF((PyObject*)*buf); *buf = NULL; } return eErr; } SWIGINTERN CPLErr GDALRasterBandShadow_ReadBlock(GDALRasterBandShadow *self,int xoff,int yoff,void **buf){ int nBlockXSize, nBlockYSize; GDALGetBlockSize(self, &nBlockXSize, &nBlockYSize); int nDataTypeSize = (GDALGetDataTypeSize(GDALGetRasterDataType(self)) / 8); GIntBig buf_size = (GIntBig)nBlockXSize * nBlockYSize * nDataTypeSize; #if PY_VERSION_HEX >= 0x03000000 *buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { *buf = Py_None; CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return CE_Failure; } char *data = PyBytes_AsString( (PyObject *)*buf ); #else *buf = (void *)PyString_FromStringAndSize( NULL, buf_size ); if (*buf == NULL) { CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer"); return CE_Failure; } char *data = PyString_AsString( (PyObject *)*buf ); #endif CPLErr eErr = GDALReadBlock( self, xoff, yoff, (void *) data); if (eErr == CE_Failure) { Py_DECREF((PyObject*)*buf); *buf = NULL; } return eErr; } GDALDataType GDALRasterBandShadow_DataType_get( GDALRasterBandShadow *h ) { return GDALGetRasterDataType( h ); } int GDALRasterBandShadow_XSize_get( GDALRasterBandShadow *h ) { return GDALGetRasterBandXSize( h ); } int GDALRasterBandShadow_YSize_get( GDALRasterBandShadow *h ) { return GDALGetRasterBandYSize( h ); } SWIGINTERN GDALColorTableShadow *new_GDALColorTableShadow(GDALPaletteInterp palette=GPI_RGB){ return (GDALColorTableShadow*) GDALCreateColorTable(palette); } SWIGINTERN void delete_GDALColorTableShadow(GDALColorTableShadow *self){ GDALDestroyColorTable(self); } SWIGINTERN GDALColorTableShadow *GDALColorTableShadow_Clone(GDALColorTableShadow *self){ return (GDALColorTableShadow*) GDALCloneColorTable (self); } SWIGINTERN GDALPaletteInterp GDALColorTableShadow_GetPaletteInterpretation(GDALColorTableShadow *self){ return GDALGetPaletteInterpretation(self); } SWIGINTERN int GDALColorTableShadow_GetColorEntryCount(GDALColorTableShadow *self){ return GDALGetColorEntryCount(self); } SWIGINTERN GDALColorEntry *GDALColorTableShadow_GetColorEntry(GDALColorTableShadow *self,int entry){ return (GDALColorEntry*) GDALGetColorEntry(self, entry); } SWIGINTERN int GDALColorTableShadow_GetColorEntryAsRGB(GDALColorTableShadow *self,int entry,GDALColorEntry *centry){ return GDALGetColorEntryAsRGB(self, entry, centry); } SWIGINTERN void GDALColorTableShadow_SetColorEntry(GDALColorTableShadow *self,int entry,GDALColorEntry const *centry){ GDALSetColorEntry(self, entry, centry); } SWIGINTERN void GDALColorTableShadow_CreateColorRamp(GDALColorTableShadow *self,int nStartIndex,GDALColorEntry const *startcolor,int nEndIndex,GDALColorEntry const *endcolor){ GDALCreateColorRamp(self, nStartIndex, startcolor, nEndIndex, endcolor); } SWIGINTERN GDALRasterAttributeTableShadow *new_GDALRasterAttributeTableShadow(){ return (GDALRasterAttributeTableShadow*) GDALCreateRasterAttributeTable(); } SWIGINTERN void delete_GDALRasterAttributeTableShadow(GDALRasterAttributeTableShadow *self){ GDALDestroyRasterAttributeTable(self); } SWIGINTERN GDALRasterAttributeTableShadow *GDALRasterAttributeTableShadow_Clone(GDALRasterAttributeTableShadow *self){ return (GDALRasterAttributeTableShadow*) GDALRATClone(self); } SWIGINTERN int GDALRasterAttributeTableShadow_GetColumnCount(GDALRasterAttributeTableShadow *self){ return GDALRATGetColumnCount( self ); } SWIGINTERN char const *GDALRasterAttributeTableShadow_GetNameOfCol(GDALRasterAttributeTableShadow *self,int iCol){ return GDALRATGetNameOfCol( self, iCol ); } SWIGINTERN GDALRATFieldUsage GDALRasterAttributeTableShadow_GetUsageOfCol(GDALRasterAttributeTableShadow *self,int iCol){ return GDALRATGetUsageOfCol( self, iCol ); } SWIGINTERN GDALRATFieldType GDALRasterAttributeTableShadow_GetTypeOfCol(GDALRasterAttributeTableShadow *self,int iCol){ return GDALRATGetTypeOfCol( self, iCol ); } SWIGINTERN int GDALRasterAttributeTableShadow_GetColOfUsage(GDALRasterAttributeTableShadow *self,GDALRATFieldUsage eUsage){ return GDALRATGetColOfUsage( self, eUsage ); } SWIGINTERN int GDALRasterAttributeTableShadow_GetRowCount(GDALRasterAttributeTableShadow *self){ return GDALRATGetRowCount( self ); } SWIGINTERN char const *GDALRasterAttributeTableShadow_GetValueAsString(GDALRasterAttributeTableShadow *self,int iRow,int iCol){ return GDALRATGetValueAsString( self, iRow, iCol ); } SWIGINTERN int GDALRasterAttributeTableShadow_GetValueAsInt(GDALRasterAttributeTableShadow *self,int iRow,int iCol){ return GDALRATGetValueAsInt( self, iRow, iCol ); } SWIGINTERN double GDALRasterAttributeTableShadow_GetValueAsDouble(GDALRasterAttributeTableShadow *self,int iRow,int iCol){ return GDALRATGetValueAsDouble( self, iRow, iCol ); } SWIGINTERN void GDALRasterAttributeTableShadow_SetValueAsString(GDALRasterAttributeTableShadow *self,int iRow,int iCol,char const *pszValue){ GDALRATSetValueAsString( self, iRow, iCol, pszValue ); } SWIGINTERN void GDALRasterAttributeTableShadow_SetValueAsInt(GDALRasterAttributeTableShadow *self,int iRow,int iCol,int nValue){ GDALRATSetValueAsInt( self, iRow, iCol, nValue ); } SWIGINTERN void GDALRasterAttributeTableShadow_SetValueAsDouble(GDALRasterAttributeTableShadow *self,int iRow,int iCol,double dfValue){ GDALRATSetValueAsDouble( self, iRow, iCol, dfValue ); } SWIGINTERN void GDALRasterAttributeTableShadow_SetRowCount(GDALRasterAttributeTableShadow *self,int nCount){ GDALRATSetRowCount( self, nCount ); } SWIGINTERN int GDALRasterAttributeTableShadow_CreateColumn(GDALRasterAttributeTableShadow *self,char const *pszName,GDALRATFieldType eType,GDALRATFieldUsage eUsage){ return GDALRATCreateColumn( self, pszName, eType, eUsage ); } SWIGINTERN bool GDALRasterAttributeTableShadow_GetLinearBinning(GDALRasterAttributeTableShadow *self,double *pdfRow0Min,double *pdfBinSize){ return (GDALRATGetLinearBinning(self, pdfRow0Min, pdfBinSize) != 0) ? true : false; } SWIGINTERN int GDALRasterAttributeTableShadow_SetLinearBinning(GDALRasterAttributeTableShadow *self,double dfRow0Min,double dfBinSize){ return GDALRATSetLinearBinning(self, dfRow0Min, dfBinSize); } SWIGINTERN int GDALRasterAttributeTableShadow_GetRowOfValue(GDALRasterAttributeTableShadow *self,double dfValue){ return GDALRATGetRowOfValue( self, dfValue ); } SWIGINTERN int GDALRasterAttributeTableShadow_ChangesAreWrittenToFile(GDALRasterAttributeTableShadow *self){ return GDALRATChangesAreWrittenToFile( self ); } #include "gdalgrid.h" #ifdef DEBUG typedef struct OGRLayerHS OGRLayerShadow; typedef struct OGRGeometryHS OGRGeometryShadow; #else typedef void OGRLayerShadow; typedef void OGRGeometryShadow; #endif int GDALTermProgress_nocb( double dfProgress, const char * pszMessage=NULL, void *pData=NULL ) { return GDALTermProgress( dfProgress, pszMessage, pData); } int ComputeMedianCutPCT ( GDALRasterBandShadow *red, GDALRasterBandShadow *green, GDALRasterBandShadow *blue, int num_colors, GDALColorTableShadow* colors, GDALProgressFunc callback = NULL, void* callback_data=NULL) { CPLErrorReset(); int err = GDALComputeMedianCutPCT( red, green, blue, NULL, num_colors, colors, callback, callback_data); return err; } int DitherRGB2PCT ( GDALRasterBandShadow *red, GDALRasterBandShadow *green, GDALRasterBandShadow *blue, GDALRasterBandShadow *target, GDALColorTableShadow *colors, GDALProgressFunc callback = NULL, void* callback_data=NULL) { CPLErrorReset(); int err; err = GDALDitherRGB2PCT( red, green, blue, target, colors, callback, callback_data); return err; } CPLErr ReprojectImage ( GDALDatasetShadow *src_ds, GDALDatasetShadow *dst_ds, const char *src_wkt=NULL, const char *dst_wkt=NULL, GDALResampleAlg eResampleAlg=GRA_NearestNeighbour, double WarpMemoryLimit=0.0, double maxerror = 0.0, GDALProgressFunc callback = NULL, void* callback_data=NULL) { CPLErrorReset(); CPLErr err = GDALReprojectImage( src_ds, src_wkt, dst_ds, dst_wkt, eResampleAlg, WarpMemoryLimit, maxerror, callback, callback_data, NULL); return err; } int ComputeProximity( GDALRasterBandShadow *srcBand, GDALRasterBandShadow *proximityBand, char **options = NULL, GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErrorReset(); return GDALComputeProximity( srcBand, proximityBand, options, callback, callback_data ); } int RasterizeLayer( GDALDatasetShadow *dataset, int bands, int *band_list, OGRLayerShadow *layer, void *pfnTransformer = NULL, void *pTransformArg = NULL, int burn_values = 0, double *burn_values_list = NULL, char **options = NULL, GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErr eErr; CPLErrorReset(); if( burn_values == 0 ) { burn_values_list = (double *) CPLMalloc(sizeof(double)*bands); for( int i = 0; i < bands; i++ ) burn_values_list[i] = 255.0; } else if( burn_values != bands ) { CPLError( CE_Failure, CPLE_AppDefined, "Did not get the expected number of burn values in RasterizeLayer()" ); return CE_Failure; } eErr = GDALRasterizeLayers( dataset, bands, band_list, 1, &layer, (GDALTransformerFunc) pfnTransformer, pTransformArg, burn_values_list, options, callback, callback_data ); if( burn_values == 0 ) CPLFree( burn_values_list ); return eErr; } int Polygonize( GDALRasterBandShadow *srcBand, GDALRasterBandShadow *maskBand, OGRLayerShadow *outLayer, int iPixValField, char **options = NULL, GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErrorReset(); return GDALPolygonize( srcBand, maskBand, outLayer, iPixValField, options, callback, callback_data ); } int FillNodata( GDALRasterBandShadow *targetBand, GDALRasterBandShadow *maskBand, double maxSearchDist, int smoothingIterations, char **options = NULL, GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErrorReset(); return GDALFillNodata( targetBand, maskBand, maxSearchDist, 0, smoothingIterations, options, callback, callback_data ); } int SieveFilter( GDALRasterBandShadow *srcBand, GDALRasterBandShadow *maskBand, GDALRasterBandShadow *dstBand, int threshold, int connectedness=4, char **options = NULL, GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErrorReset(); return GDALSieveFilter( srcBand, maskBand, dstBand, threshold, connectedness, options, callback, callback_data ); } int RegenerateOverviews( GDALRasterBandShadow *srcBand, int overviewBandCount, GDALRasterBandShadow **overviewBands, const char *resampling = "average", GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErrorReset(); return GDALRegenerateOverviews( srcBand, overviewBandCount, overviewBands, resampling ? resampling : "average", callback, callback_data ); } int RegenerateOverview( GDALRasterBandShadow *srcBand, GDALRasterBandShadow *overviewBand, const char *resampling = "average", GDALProgressFunc callback=NULL, void* callback_data=NULL) { CPLErrorReset(); return GDALRegenerateOverviews( srcBand, 1, &overviewBand, resampling ? resampling : "average", callback, callback_data ); } int ContourGenerate( GDALRasterBandShadow *srcBand, double contourInterval, double contourBase, int fixedLevelCount, double *fixedLevels, int useNoData, double noDataValue, OGRLayerShadow* dstLayer, int idField, int elevField, GDALProgressFunc callback = NULL, void* callback_data = NULL) { CPLErr eErr; CPLErrorReset(); eErr = GDALContourGenerate( srcBand, contourInterval, contourBase, fixedLevelCount, fixedLevels, useNoData, noDataValue, dstLayer, idField, elevField, callback, callback_data); return eErr; } GDALDatasetShadow *AutoCreateWarpedVRT( GDALDatasetShadow *src_ds, const char *src_wkt = 0, const char *dst_wkt = 0, GDALResampleAlg eResampleAlg = GRA_NearestNeighbour, double maxerror = 0.0 ) { GDALDatasetShadow *ds = GDALAutoCreateWarpedVRT( src_ds, src_wkt, dst_wkt, eResampleAlg, maxerror, 0 ); if (ds == 0) { /*throw CPLGetLastErrorMsg(); causes a SWIG_exception later*/ } return ds; } SWIGINTERN GDALTransformerInfoShadow *new_GDALTransformerInfoShadow(GDALDatasetShadow *src,GDALDatasetShadow *dst,char **options){ GDALTransformerInfoShadow *obj = (GDALTransformerInfoShadow*) GDALCreateGenImgProjTransformer2( (GDALDatasetH)src, (GDALDatasetH)dst, options ); return obj; } SWIGINTERN void delete_GDALTransformerInfoShadow(GDALTransformerInfoShadow *self){ GDALDestroyTransformer( self ); } SWIGINTERN int GDALTransformerInfoShadow_TransformPoint__SWIG_0(GDALTransformerInfoShadow *self,int bDstToSrc,double inout[3]){ int nRet, nSuccess = TRUE; nRet = GDALUseTransformer( self, bDstToSrc, 1, &inout[0], &inout[1], &inout[2], &nSuccess ); return nRet && nSuccess; } SWIGINTERN int GDALTransformerInfoShadow_TransformPoint__SWIG_1(GDALTransformerInfoShadow *self,double argout[3],int bDstToSrc,double x,double y,double z=0.0){ int nRet, nSuccess = TRUE; argout[0] = x; argout[1] = y; argout[2] = z; nRet = GDALUseTransformer( self, bDstToSrc, 1, &argout[0], &argout[1], &argout[2], &nSuccess ); return nRet && nSuccess; } static int DecomposeSequenceOfCoordinates( PyObject *seq, int nCount, double *x, double *y, double *z ) { for( int i = 0; i<nCount; ++i ) { PyObject *o = PySequence_GetItem(seq, i); if ( !PySequence_Check(o) ) { Py_DECREF(o); PyErr_SetString(PyExc_TypeError, "not a sequence"); return FALSE; } Py_ssize_t len = PySequence_Size(o); if (len == 2 || len == 3) { PyObject *o1 = PySequence_GetItem(o, 0); if (!PyNumber_Check(o1)) { Py_DECREF(o); Py_DECREF(o1); PyErr_SetString(PyExc_TypeError, "not a number"); return FALSE; } x[i] = PyFloat_AsDouble(o1); Py_DECREF(o1); o1 = PySequence_GetItem(o, 1); if (!PyNumber_Check(o1)) { Py_DECREF(o); Py_DECREF(o1); PyErr_SetString(PyExc_TypeError, "not a number"); return FALSE; } y[i] = PyFloat_AsDouble(o1); Py_DECREF(o1); /* The 3rd coordinate is optional, default 0.0 */ if (len == 3) { o1 = PySequence_GetItem(o, 2); if (!PyNumber_Check(o1)) { Py_DECREF(o); Py_DECREF(o1); PyErr_SetString(PyExc_TypeError, "not a number"); return FALSE; } z[i] = PyFloat_AsDouble(o1); Py_DECREF(o1); } else { z[i] = 0.0; } } else { Py_DECREF(o); PyErr_SetString(PyExc_TypeError, "invalid coordinate"); return FALSE; } Py_DECREF(o); } return TRUE; } SWIGINTERN int GDALTransformerInfoShadow_TransformPoints(GDALTransformerInfoShadow *self,int bDstToSrc,int nCount,double *x,double *y,double *z,int *panSuccess){ int nRet; nRet = GDALUseTransformer( self, bDstToSrc, nCount, x, y, z, panSuccess ); return nRet; } SWIGINTERN int GDALTransformerInfoShadow_TransformGeolocations(GDALTransformerInfoShadow *self,GDALRasterBandShadow *xBand,GDALRasterBandShadow *yBand,GDALRasterBandShadow *zBand,GDALProgressFunc callback=NULL,void *callback_data=NULL,char **options=NULL){ CPLErrorReset(); return GDALTransformGeolocations( xBand, yBand, zBand, GDALUseTransformer, self, callback, callback_data, options ); } GIntBig wrapper_GDALGetCacheMax() { return GDALGetCacheMax64(); } GIntBig wrapper_GDALGetCacheUsed() { return GDALGetCacheUsed64(); } void wrapper_GDALSetCacheMax(GIntBig nBytes) { return GDALSetCacheMax64(nBytes); } /************************************************************************/ /* XMLTreeToPyList() */ /************************************************************************/ static PyObject *XMLTreeToPyList( CPLXMLNode *psTree ) { PyObject *pyList; int nChildCount = 0, iChild; CPLXMLNode *psChild; for( psChild = psTree->psChild; psChild != NULL; psChild = psChild->psNext ) nChildCount++; pyList = PyList_New(nChildCount+2); PyList_SetItem( pyList, 0, Py_BuildValue( "i", (int) psTree->eType ) ); PyList_SetItem( pyList, 1, Py_BuildValue( "s", psTree->pszValue ) ); for( psChild = psTree->psChild, iChild = 2; psChild != NULL; psChild = psChild->psNext, iChild++ ) { PyList_SetItem( pyList, iChild, XMLTreeToPyList( psChild ) ); } return pyList; } /************************************************************************/ /* PyListToXMLTree() */ /************************************************************************/ static CPLXMLNode *PyListToXMLTree( PyObject *pyList ) { int nChildCount = 0, iChild, nType; CPLXMLNode *psThisNode; CPLXMLNode *psChild; char *pszText = NULL; nChildCount = PyList_Size(pyList) - 2; if( nChildCount < 0 ) { PyErr_SetString(PyExc_TypeError,"Error in input XMLTree." ); return NULL; } PyArg_Parse( PyList_GET_ITEM(pyList,0), "i", &nType ); PyArg_Parse( PyList_GET_ITEM(pyList,1), "s", &pszText ); /* Detect "pseudo" root */ if (nType == CXT_Element && pszText != NULL && strlen(pszText) == 0 && nChildCount == 2) { PyObject *pyFirst = PyList_GET_ITEM(pyList, 2); if (PyList_Size(pyFirst) < 2) { PyErr_SetString(PyExc_TypeError,"Error in input XMLTree." ); return NULL; } int nTypeFirst = 0; char* pszTextFirst = NULL; PyArg_Parse( PyList_GET_ITEM(pyFirst,0), "i", &nTypeFirst ); PyArg_Parse( PyList_GET_ITEM(pyFirst,1), "s", &pszTextFirst ); if (nTypeFirst == CXT_Element && pszTextFirst != NULL && pszTextFirst[0] == '?') { psThisNode = PyListToXMLTree( PyList_GET_ITEM(pyList,2) ); psThisNode->psNext = PyListToXMLTree( PyList_GET_ITEM(pyList,3) ); return psThisNode; } } psThisNode = CPLCreateXMLNode( NULL, (CPLXMLNodeType) nType, pszText ); for( iChild = 0; iChild < nChildCount; iChild++ ) { psChild = PyListToXMLTree( PyList_GET_ITEM(pyList,iChild+2) ); CPLAddXMLChild( psThisNode, psChild ); } return psThisNode; } int GetDriverCount() { return GDALGetDriverCount(); } GDALDriverShadow* GetDriverByName( char const *name ) { return (GDALDriverShadow*) GDALGetDriverByName( name ); } GDALDriverShadow* GetDriver( int i ) { return (GDALDriverShadow*) GDALGetDriver( i ); } GDALDatasetShadow* Open( char const* utf8_path, GDALAccess eAccess = GA_ReadOnly ) { CPLErrorReset(); GDALDatasetShadow *ds = GDALOpen( utf8_path, eAccess ); if( ds != NULL && CPLGetLastErrorType() == CE_Failure ) { if ( GDALDereferenceDataset( ds ) <= 0 ) GDALClose(ds); ds = NULL; } return (GDALDatasetShadow*) ds; } GDALDatasetShadow* OpenShared( char const* utf8_path, GDALAccess eAccess = GA_ReadOnly ) { CPLErrorReset(); GDALDatasetShadow *ds = GDALOpenShared( utf8_path, eAccess ); if( ds != NULL && CPLGetLastErrorType() == CE_Failure ) { if ( GDALDereferenceDataset( ds ) <= 0 ) GDALClose(ds); ds = NULL; } return (GDALDatasetShadow*) ds; } GDALDriverShadow *IdentifyDriver( const char *utf8_path, char **papszSiblings = NULL ) { return (GDALDriverShadow *) GDALIdentifyDriver( utf8_path, papszSiblings ); } char **GeneralCmdLineProcessor( char **papszArgv, int nOptions = 0 ) { int nResArgCount; nResArgCount = GDALGeneralCmdLineProcessor( CSLCount(papszArgv), &papszArgv, nOptions ); if( nResArgCount <= 0 ) return NULL; else return papszArgv; } #ifdef __cplusplus extern "C" { #endif SWIGINTERN PyObject *_wrap_GetUseExceptions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":GetUseExceptions")) SWIG_fail; result = (int)GetUseExceptions(); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_UseExceptions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":UseExceptions")) SWIG_fail; UseExceptions(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_DontUseExceptions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":DontUseExceptions")) SWIG_fail; DontUseExceptions(); resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VSIFReadL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; void **arg1 = (void **) 0 ; int arg2 ; int arg3 ; VSILFILE *arg4 = (VSILFILE *) 0 ; void *pyObject1 = NULL ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int res4 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; { /* %typemap(in,numinputs=0) ( void **outPythonObject ) ( void *pyObject1 = NULL ) */ arg1 = &pyObject1; } if (!PyArg_ParseTuple(args,(char *)"OOO:VSIFReadL",&obj0,&obj1,&obj2)) SWIG_fail; ecode2 = SWIG_AsVal_int(obj0, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "VSIFReadL" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "VSIFReadL" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); res4 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg4), 0, 0); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "VSIFReadL" "', argument " "4"" of type '" "VSILFILE *""'"); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)wrapper_VSIFReadL(arg1,arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) ( void **outPythonObject ) */ Py_XDECREF(resultobj); if (*arg1) { resultobj = (PyObject*)*arg1; } else { resultobj = Py_None; Py_INCREF(resultobj); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Debug(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:Debug",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Debug" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Debug" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } Debug((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_SetErrorHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) NULL ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"|O:SetErrorHandler",&obj0)) SWIG_fail; if (obj0) { res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SetErrorHandler" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)SetErrorHandler((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_PushErrorHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; CPLErrorHandler arg1 = (CPLErrorHandler) NULL ; void *arg2 = (void *) NULL ; PyObject * obj0 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"|O:PushErrorHandler",&obj0)) SWIG_fail; if (obj0) { { /* %typemap(in) (CPLErrorHandler pfnErrorHandler = NULL, void* user_data = NULL) */ int alloc = 0; char* pszCallbackName = NULL; arg2 = NULL; if( SWIG_IsOK(SWIG_AsCharPtrAndSize(obj0, &pszCallbackName, NULL, &alloc)) ) { if( pszCallbackName == NULL || EQUAL(pszCallbackName,"CPLQuietErrorHandler") ) arg1 = CPLQuietErrorHandler; else if( EQUAL(pszCallbackName,"CPLDefaultErrorHandler") ) arg1 = CPLDefaultErrorHandler; else if( EQUAL(pszCallbackName,"CPLLoggingErrorHandler") ) arg1 = CPLLoggingErrorHandler; else { if (alloc == SWIG_NEWOBJ) delete[] pszCallbackName; PyErr_SetString( PyExc_RuntimeError, "Unhandled value for passed string" ); SWIG_fail; } if (alloc == SWIG_NEWOBJ) delete[] pszCallbackName; } else if (!PyCallable_Check(obj0)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a String or a Python function" ); SWIG_fail; } else { Py_INCREF(obj0); arg1 = PyCPLErrorHandler; arg2 = obj0; } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)PushErrorHandler(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_PopErrorHandler(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":PopErrorHandler")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } PopErrorHandler(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Error(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; CPLErr arg1 = (CPLErr) CE_Failure ; int arg2 = (int) 0 ; char *arg3 = (char *) "error" ; int val1 ; int ecode1 = 0 ; int val2 ; int ecode2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"|OOO:Error",&obj0,&obj1,&obj2)) SWIG_fail; if (obj0) { ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "Error" "', argument " "1"" of type '" "CPLErr""'"); } arg1 = static_cast< CPLErr >(val1); } if (obj1) { ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Error" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); } if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Error" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } { if ( bUseExceptions ) { CPLErrorReset(); } Error(arg1,arg2,(char const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_GOA2GetAuthorizationURL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; retStringAndCPLFree *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GOA2GetAuthorizationURL",&obj0)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GOA2GetAuthorizationURL" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (retStringAndCPLFree *)GOA2GetAuthorizationURL((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (retStringAndCPLFree*) */ if(result) { resultobj = GDALPythonObjectFromCStr( (const char *)result); CPLFree(result); } } if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_GOA2GetRefreshToken(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; retStringAndCPLFree *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GOA2GetRefreshToken",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GOA2GetRefreshToken" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GOA2GetRefreshToken" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (retStringAndCPLFree *)GOA2GetRefreshToken((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (retStringAndCPLFree*) */ if(result) { resultobj = GDALPythonObjectFromCStr( (const char *)result); CPLFree(result); } } if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GOA2GetAccessToken(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; retStringAndCPLFree *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GOA2GetAccessToken",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GOA2GetAccessToken" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GOA2GetAccessToken" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (retStringAndCPLFree *)GOA2GetAccessToken((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (retStringAndCPLFree*) */ if(result) { resultobj = GDALPythonObjectFromCStr( (const char *)result); CPLFree(result); } } if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_ErrorReset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":ErrorReset")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } CPLErrorReset(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_EscapeString(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; int arg1 ; char *arg2 = (char *) 0 ; int arg3 = (int) CPLES_SQL ; int alloc1 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char * kwnames[] = { (char *) "len",(char *) "scheme", NULL }; retStringAndCPLFree *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:EscapeString",kwnames,&obj0,&obj1)) SWIG_fail; { /* %typemap(in,numinputs=1) (int nLen, char *pBuf ) */ #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj0)) { size_t safeLen = 0; int ret = SWIG_AsCharPtrAndSize(obj0, (char**) &arg2, &safeLen, &alloc1); if (!SWIG_IsOK(ret)) { SWIG_exception( SWIG_RuntimeError, "invalid Unicode string" ); } if (safeLen) safeLen--; arg1 = (int) safeLen; } else if (PyBytes_Check(obj0)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj0, (char**) &arg2, &safeLen); arg1 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a unicode string or a bytes"); SWIG_fail; } #else if (PyString_Check(obj0)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj0, (char**) &arg2, &safeLen); arg1 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } if (obj1) { ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "EscapeString" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (retStringAndCPLFree *)EscapeString(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (retStringAndCPLFree*) */ if(result) { resultobj = GDALPythonObjectFromCStr( (const char *)result); CPLFree(result); } } { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc1 == SWIG_NEWOBJ ) { delete[] arg2; } } return resultobj; fail: { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc1 == SWIG_NEWOBJ ) { delete[] arg2; } } return NULL; } SWIGINTERN PyObject *_wrap_GetLastErrorNo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":GetLastErrorNo")) SWIG_fail; { result = CPLGetLastErrorNo(); } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetLastErrorType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":GetLastErrorType")) SWIG_fail; { result = CPLGetLastErrorType(); } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetLastErrorMsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":GetLastErrorMsg")) SWIG_fail; { result = (char*)CPLGetLastErrorMsg(); } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_PushFinderLocation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int bToFree1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:PushFinderLocation",&obj0)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } CPLPushFinderLocation((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_PopFinderLocation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":PopFinderLocation")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } CPLPopFinderLocation(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_FinderClean(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":FinderClean")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } CPLFinderClean(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_FindFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int bToFree2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:FindFile",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FindFile" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); { /* %typemap(in) (const char *utf8_path) */ arg2 = GDALPythonObjectToCStr( obj1, &bToFree2 ); if (arg2 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)CPLFindFile((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } return NULL; } SWIGINTERN PyObject *_wrap_ReadDir(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int bToFree1 = 0 ; PyObject * obj0 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:ReadDir",&obj0)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)VSIReadDir((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **CSL -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } CSLDestroy(result); } { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_ReadDirRecursive(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int bToFree1 = 0 ; PyObject * obj0 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:ReadDirRecursive",&obj0)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)VSIReadDirRecursive((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **CSL -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } CSLDestroy(result); } { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_SetConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:SetConfigOption",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SetConfigOption" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SetConfigOption" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } CPLSetConfigOption((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GetConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) NULL ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:GetConfigOption",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GetConfigOption" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); if (obj1) { res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GetConfigOption" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)wrapper_CPLGetConfigOption((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_CPLBinaryToHex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int arg1 ; GByte *arg2 = (GByte *) 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; retStringAndCPLFree *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:CPLBinaryToHex",&obj0)) SWIG_fail; { /* %typemap(in,numinputs=1) (int nLen, char *pBuf ) */ #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj0)) { size_t safeLen = 0; int ret = SWIG_AsCharPtrAndSize(obj0, (char**) &arg2, &safeLen, &alloc1); if (!SWIG_IsOK(ret)) { SWIG_exception( SWIG_RuntimeError, "invalid Unicode string" ); } if (safeLen) safeLen--; arg1 = (int) safeLen; } else if (PyBytes_Check(obj0)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj0, (char**) &arg2, &safeLen); arg1 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a unicode string or a bytes"); SWIG_fail; } #else if (PyString_Check(obj0)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj0, (char**) &arg2, &safeLen); arg1 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } { if ( bUseExceptions ) { CPLErrorReset(); } result = (retStringAndCPLFree *)CPLBinaryToHex(arg1,(GByte const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (retStringAndCPLFree*) */ if(result) { resultobj = GDALPythonObjectFromCStr( (const char *)result); CPLFree(result); } } { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc1 == SWIG_NEWOBJ ) { delete[] arg2; } } return resultobj; fail: { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc1 == SWIG_NEWOBJ ) { delete[] arg2; } } return NULL; } SWIGINTERN PyObject *_wrap_CPLHexToBinary(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int *arg2 = (int *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GByte *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:CPLHexToBinary",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CPLHexToBinary" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CPLHexToBinary" "', argument " "2"" of type '" "int *""'"); } arg2 = reinterpret_cast< int * >(argp2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GByte *)CPLHexToBinary((char const *)arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GByte, 0 | 0 ); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_FileFromMemBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int arg2 ; GByte *arg3 = (GByte *) 0 ; int bToFree1 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:FileFromMemBuffer",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { /* %typemap(in,numinputs=1) (int nLen, char *pBuf ) */ #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj1)) { size_t safeLen = 0; int ret = SWIG_AsCharPtrAndSize(obj1, (char**) &arg3, &safeLen, &alloc2); if (!SWIG_IsOK(ret)) { SWIG_exception( SWIG_RuntimeError, "invalid Unicode string" ); } if (safeLen) safeLen--; arg2 = (int) safeLen; } else if (PyBytes_Check(obj1)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj1, (char**) &arg3, &safeLen); arg2 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a unicode string or a bytes"); SWIG_fail; } #else if (PyString_Check(obj1)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj1, (char**) &arg3, &safeLen); arg2 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } wrapper_VSIFileFromMemBuffer((char const *)arg1,arg2,(GByte const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc2 == SWIG_NEWOBJ ) { delete[] arg3; } } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc2 == SWIG_NEWOBJ ) { delete[] arg3; } } return NULL; } SWIGINTERN PyObject *_wrap_Unlink(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int bToFree1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Unlink",&obj0)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)VSIUnlink((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_HasThreadSupport(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":HasThreadSupport")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)wrapper_HasThreadSupport(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Mkdir(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int arg2 ; int bToFree1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:Mkdir",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Mkdir" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)VSIMkdir((char const *)arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_Rmdir(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int bToFree1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Rmdir",&obj0)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)VSIRmdir((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_Rename(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:Rename",&obj0,&obj1)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Rename" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Rename" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)VSIRename((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_StatBuf_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; StatBuf *arg1 = (StatBuf *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:StatBuf_mode_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_StatBuf, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StatBuf_mode_get" "', argument " "1"" of type '" "StatBuf *""'"); } arg1 = reinterpret_cast< StatBuf * >(argp1); result = (int) ((arg1)->mode); resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_StatBuf_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; StatBuf *arg1 = (StatBuf *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GIntBig result; if (!PyArg_ParseTuple(args,(char *)"O:StatBuf_size_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_StatBuf, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StatBuf_size_get" "', argument " "1"" of type '" "StatBuf *""'"); } arg1 = reinterpret_cast< StatBuf * >(argp1); result = ((arg1)->size); { char szTmp[32]; sprintf(szTmp, CPL_FRMT_GIB, result); #if PY_VERSION_HEX>=0x03000000 resultobj = PyLong_FromString(szTmp, NULL, 10); #else resultobj = PyInt_FromString(szTmp, NULL, 10); #endif } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_StatBuf_mtime_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; StatBuf *arg1 = (StatBuf *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GIntBig result; if (!PyArg_ParseTuple(args,(char *)"O:StatBuf_mtime_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_StatBuf, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StatBuf_mtime_get" "', argument " "1"" of type '" "StatBuf *""'"); } arg1 = reinterpret_cast< StatBuf * >(argp1); result = ((arg1)->mtime); { char szTmp[32]; sprintf(szTmp, CPL_FRMT_GIB, result); #if PY_VERSION_HEX>=0x03000000 resultobj = PyLong_FromString(szTmp, NULL, 10); #else resultobj = PyInt_FromString(szTmp, NULL, 10); #endif } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_StatBuf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; StatBuf *arg1 = (StatBuf *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; StatBuf *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:new_StatBuf",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_StatBuf, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_StatBuf" "', argument " "1"" of type '" "StatBuf *""'"); } arg1 = reinterpret_cast< StatBuf * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (StatBuf *)new_StatBuf(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_StatBuf, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_StatBuf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; StatBuf *arg1 = (StatBuf *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_StatBuf",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_StatBuf, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_StatBuf" "', argument " "1"" of type '" "StatBuf *""'"); } arg1 = reinterpret_cast< StatBuf * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_StatBuf(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_StatBuf_IsDirectory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; StatBuf *arg1 = (StatBuf *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:StatBuf_IsDirectory",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_StatBuf, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "StatBuf_IsDirectory" "', argument " "1"" of type '" "StatBuf *""'"); } arg1 = reinterpret_cast< StatBuf * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)StatBuf_IsDirectory(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *StatBuf_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_StatBuf, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_VSIStatL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; StatBuf *arg2 = (StatBuf *) 0 ; int arg3 = (int) 0 ; int bToFree1 = 0 ; StatBuf sStatBuf2 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; { /* %typemap(in,numinputs=0) (StatBuf *psStatBufOut) (StatBuf sStatBuf2 ) */ arg2 = &sStatBuf2; } if (!PyArg_ParseTuple(args,(char *)"O|O:VSIStatL",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } if (obj1) { ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "VSIStatL" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)wrapper_VSIStatL((char const *)arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) (StatBuf *psStatBufOut)*/ Py_DECREF(resultobj); if (result == 0) resultobj = SWIG_NewPointerObj((void*)new_StatBuf( arg2 ),SWIGTYPE_p_StatBuf,1); else resultobj = Py_None; } { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_VSIFOpenL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char *arg2 = (char *) 0 ; int bToFree1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; VSILFILE *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:VSIFOpenL",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "VSIFOpenL" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (VSILFILE *)VSIFOpenL((char const *)arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_VSIFCloseL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; VSILFILE *arg1 = (VSILFILE *) 0 ; int res1 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:VSIFCloseL",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VSIFCloseL" "', argument " "1"" of type '" "VSILFILE *""'"); } { if ( bUseExceptions ) { CPLErrorReset(); } VSIFCloseL(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VSIFSeekL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; VSILFILE *arg1 = (VSILFILE *) 0 ; GIntBig arg2 ; int arg3 ; int res1 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:VSIFSeekL",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VSIFSeekL" "', argument " "1"" of type '" "VSILFILE *""'"); } { PY_LONG_LONG val; if ( !PyArg_Parse(obj1,"L",&val) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); SWIG_fail; } arg2 = (GIntBig)val; } ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "VSIFSeekL" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)VSIFSeekL(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VSIFTellL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; VSILFILE *arg1 = (VSILFILE *) 0 ; int res1 ; PyObject * obj0 = 0 ; GIntBig result; if (!PyArg_ParseTuple(args,(char *)"O:VSIFTellL",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VSIFTellL" "', argument " "1"" of type '" "VSILFILE *""'"); } { if ( bUseExceptions ) { CPLErrorReset(); } result = VSIFTellL(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { char szTmp[32]; sprintf(szTmp, CPL_FRMT_GIB, result); #if PY_VERSION_HEX>=0x03000000 resultobj = PyLong_FromString(szTmp, NULL, 10); #else resultobj = PyInt_FromString(szTmp, NULL, 10); #endif } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VSIFTruncateL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; VSILFILE *arg1 = (VSILFILE *) 0 ; GIntBig arg2 ; int res1 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:VSIFTruncateL",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VSIFTruncateL" "', argument " "1"" of type '" "VSILFILE *""'"); } { PY_LONG_LONG val; if ( !PyArg_Parse(obj1,"L",&val) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); SWIG_fail; } arg2 = (GIntBig)val; } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)VSIFTruncateL(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VSIFWriteL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int arg1 ; char *arg2 = (char *) 0 ; int arg3 ; int arg4 ; VSILFILE *arg5 = (VSILFILE *) 0 ; int alloc1 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int res5 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOOO:VSIFWriteL",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; { /* %typemap(in,numinputs=1) (int nLen, char *pBuf ) */ #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj0)) { size_t safeLen = 0; int ret = SWIG_AsCharPtrAndSize(obj0, (char**) &arg2, &safeLen, &alloc1); if (!SWIG_IsOK(ret)) { SWIG_exception( SWIG_RuntimeError, "invalid Unicode string" ); } if (safeLen) safeLen--; arg1 = (int) safeLen; } else if (PyBytes_Check(obj0)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj0, (char**) &arg2, &safeLen); arg1 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a unicode string or a bytes"); SWIG_fail; } #else if (PyString_Check(obj0)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj0, (char**) &arg2, &safeLen); arg1 = (int) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "VSIFWriteL" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj2, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "VSIFWriteL" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); res5 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg5), 0, 0); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "VSIFWriteL" "', argument " "5"" of type '" "VSILFILE *""'"); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)wrapper_VSIFWriteL(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc1 == SWIG_NEWOBJ ) { delete[] arg2; } } return resultobj; fail: { /* %typemap(freearg) (int *nLen, char *pBuf ) */ if( alloc1 == SWIG_NEWOBJ ) { delete[] arg2; } } return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_GetDescription(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:MajorObject_GetDescription",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_GetDescription" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALMajorObjectShadow_GetDescription(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_SetDescription(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:MajorObject_SetDescription",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_SetDescription" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "MajorObject_SetDescription" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDALMajorObjectShadow_SetDescription(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_GetMetadataDomainList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:MajorObject_GetMetadataDomainList",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_GetMetadataDomainList" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GDALMajorObjectShadow_GetMetadataDomainList(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **CSL -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } CSLDestroy(result); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_GetMetadata_Dict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char *arg2 = (char *) "" ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:MajorObject_GetMetadata_Dict",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_GetMetadata_Dict" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); if (obj1) { res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "MajorObject_GetMetadata_Dict" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GDALMajorObjectShadow_GetMetadata_Dict(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **dict */ char **stringarray = result; resultobj = PyDict_New(); if ( stringarray != NULL ) { while (*stringarray != NULL ) { char const *valptr; char *keyptr; const char* pszSep = strchr( *stringarray, '=' ); if ( pszSep != NULL) { keyptr = CPLStrdup(*stringarray); keyptr[pszSep - *stringarray] = '\0'; valptr = pszSep + 1; PyObject *nm = GDALPythonObjectFromCStr( keyptr ); PyObject *val = GDALPythonObjectFromCStr( valptr ); PyDict_SetItem(resultobj, nm, val ); Py_DECREF(nm); Py_DECREF(val); CPLFree( keyptr ); } stringarray++; } } } if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_GetMetadata_List(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char *arg2 = (char *) "" ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:MajorObject_GetMetadata_List",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_GetMetadata_List" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); if (obj1) { res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "MajorObject_GetMetadata_List" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GDALMajorObjectShadow_GetMetadata_List(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **options -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } } if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_SetMetadata__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char **arg2 = (char **) 0 ; char *arg3 = (char *) "" ; void *argp1 = 0 ; int res1 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO|O:MajorObject_SetMetadata",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_SetMetadata" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); { /* %typemap(in) char **dict */ arg2 = NULL; if ( PySequence_Check( obj1 ) ) { int size = PySequence_Size(obj1); for (int i = 0; i < size; i++) { char *pszItem = NULL; PyObject* pyObj = PySequence_GetItem(obj1,i); if ( ! PyArg_Parse( pyObj, "s", &pszItem ) ) { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } arg2 = CSLAddString( arg2, pszItem ); Py_DECREF(pyObj); } } else if ( PyMapping_Check( obj1 ) ) { /* We need to use the dictionary form. */ int size = PyMapping_Length( obj1 ); if ( size > 0 ) { PyObject *item_list = PyMapping_Items( obj1 ); for( int i=0; i<size; i++ ) { PyObject *it = PySequence_GetItem( item_list, i ); char *nm; char *val; if ( ! PyArg_ParseTuple( it, "ss", &nm, &val ) ) { Py_DECREF(it); PyErr_SetString(PyExc_TypeError,"dictionnaire must contain tuples of strings"); SWIG_fail; } arg2 = CSLAddNameValue( arg2, nm, val ); Py_DECREF(it); } Py_DECREF(item_list); } } else { PyErr_SetString(PyExc_TypeError,"Argument must be dictionary or sequence of strings"); SWIG_fail; } } if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "MajorObject_SetMetadata" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALMajorObjectShadow_SetMetadata__SWIG_0(arg1,arg2,(char const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **dict */ CSLDestroy( arg2 ); } if (alloc3 == SWIG_NEWOBJ) delete[] buf3; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: { /* %typemap(freearg) char **dict */ CSLDestroy( arg2 ); } if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_SetMetadata__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) "" ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO|O:MajorObject_SetMetadata",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_SetMetadata" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "MajorObject_SetMetadata" "', argument " "2"" of type '" "char *""'"); } arg2 = reinterpret_cast< char * >(buf2); if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "MajorObject_SetMetadata" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALMajorObjectShadow_SetMetadata__SWIG_1(arg1,arg2,(char const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_SetMetadata(PyObject *self, PyObject *args) { int argc; PyObject *argv[4]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = (int)PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 3); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if ((argc >= 2) && (argc <= 3)) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_GDALMajorObjectShadow, 0); _v = SWIG_CheckState(res); if (_v) { { /* %typecheck(SWIG_TYPECHECK_POINTER) (char **dict) */ /* Note: we exclude explicitely strings, because they can be considered as a sequence of characters, */ /* which is not desirable since it makes it impossible to define bindings such as SetMetadata(string) and SetMetadata(array_of_string) */ /* (see #4816) */ _v = ((PyMapping_Check(argv[1]) || PySequence_Check(argv[1]) ) && !SWIG_CheckState(SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0)) ) ? 1 : 0; } if (_v) { if (argc <= 2) { return _wrap_MajorObject_SetMetadata__SWIG_0(self, args); } int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_MajorObject_SetMetadata__SWIG_0(self, args); } } } } if ((argc >= 2) && (argc <= 3)) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_GDALMajorObjectShadow, 0); _v = SWIG_CheckState(res); if (_v) { int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { if (argc <= 2) { return _wrap_MajorObject_SetMetadata__SWIG_1(self, args); } int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_MajorObject_SetMetadata__SWIG_1(self, args); } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'MajorObject_SetMetadata'.\n" " Possible C/C++ prototypes are:\n" " SetMetadata(GDALMajorObjectShadow *,char **,char const *)\n" " SetMetadata(GDALMajorObjectShadow *,char *,char const *)\n"); return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_GetMetadataItem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) "" ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO|O:MajorObject_GetMetadataItem",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_GetMetadataItem" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "MajorObject_GetMetadataItem" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "MajorObject_GetMetadataItem" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALMajorObjectShadow_GetMetadataItem(arg1,(char const *)arg2,(char const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_MajorObject_SetMetadataItem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALMajorObjectShadow *arg1 = (GDALMajorObjectShadow *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; char *arg4 = (char *) "" ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OOO|O:MajorObject_SetMetadataItem",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALMajorObjectShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "MajorObject_SetMetadataItem" "', argument " "1"" of type '" "GDALMajorObjectShadow *""'"); } arg1 = reinterpret_cast< GDALMajorObjectShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "MajorObject_SetMetadataItem" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "MajorObject_SetMetadataItem" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); if (obj3) { res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "MajorObject_SetMetadataItem" "', argument " "4"" of type '" "char const *""'"); } arg4 = reinterpret_cast< char * >(buf4); } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALMajorObjectShadow_SetMetadataItem(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *MajorObject_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALMajorObjectShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_Driver_ShortName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Driver_ShortName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_ShortName_get" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDriverShadow_ShortName_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Driver_LongName_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Driver_LongName_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_LongName_get" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDriverShadow_LongName_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Driver_HelpTopic_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Driver_HelpTopic_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_HelpTopic_get" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDriverShadow_HelpTopic_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Driver_Create(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; char *arg2 = (char *) 0 ; int arg3 ; int arg4 ; int arg5 = (int) 1 ; GDALDataType arg6 = (GDALDataType) GDT_Byte ; char **arg7 = (char **) 0 ; void *argp1 = 0 ; int res1 = 0 ; int bToFree2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int val6 ; int ecode6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "self",(char *) "utf8_path",(char *) "xsize",(char *) "ysize",(char *) "bands",(char *) "eType",(char *) "options", NULL }; GDALDatasetShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOO:Driver_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_Create" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { /* %typemap(in) (const char *utf8_path) */ arg2 = GDALPythonObjectToCStr( obj1, &bToFree2 ); if (arg2 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Driver_Create" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Driver_Create" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); if (obj4) { ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Driver_Create" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); } if (obj5) { ecode6 = SWIG_AsVal_int(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Driver_Create" "', argument " "6"" of type '" "GDALDataType""'"); } arg6 = static_cast< GDALDataType >(val6); } if (obj6) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj6) || PyUnicode_Check(obj6) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj6) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj6); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj6,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg7 = CSLAddString( arg7, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg7 = CSLAddString( arg7, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg7 = CSLAddString( arg7, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDatasetShadow *)GDALDriverShadow_Create(arg1,(char const *)arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDatasetShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } { /* %typemap(freearg) char **options */ CSLDestroy( arg7 ); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } { /* %typemap(freearg) char **options */ CSLDestroy( arg7 ); } return NULL; } SWIGINTERN PyObject *_wrap_Driver_CreateCopy(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; char *arg2 = (char *) 0 ; GDALDatasetShadow *arg3 = (GDALDatasetShadow *) 0 ; int arg4 = (int) 1 ; char **arg5 = (char **) 0 ; GDALProgressFunc arg6 = (GDALProgressFunc) NULL ; void *arg7 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; int bToFree2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "self",(char *) "utf8_path",(char *) "src",(char *) "strict",(char *) "options",(char *) "callback",(char *) "callback_data", NULL }; GDALDatasetShadow *result = 0 ; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg7 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OOOO:Driver_CreateCopy",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_CreateCopy" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { /* %typemap(in) (const char *utf8_path) */ arg2 = GDALPythonObjectToCStr( obj1, &bToFree2 ); if (arg2 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Driver_CreateCopy" "', argument " "3"" of type '" "GDALDatasetShadow *""'"); } arg3 = reinterpret_cast< GDALDatasetShadow * >(argp3); if (obj3) { ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Driver_CreateCopy" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); } if (obj4) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj4) || PyUnicode_Check(obj4) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj4) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj4); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj4,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg5 = CSLAddString( arg5, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg5 = CSLAddString( arg5, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg5 = CSLAddString( arg5, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } if (obj5) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj5 && obj5 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj5, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg6 = GDALTermProgress; } else { if (!PyCallable_Check(obj5)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj5; arg6 = PyProgressProxy; } } } } if (obj6) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj6 ; } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDatasetShadow *)GDALDriverShadow_CreateCopy(arg1,(char const *)arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDatasetShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } { /* %typemap(freearg) char **options */ CSLDestroy( arg5 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } { /* %typemap(freearg) char **options */ CSLDestroy( arg5 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_Driver_Delete(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int bToFree2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:Driver_Delete",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_Delete" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { /* %typemap(in) (const char *utf8_path) */ arg2 = GDALPythonObjectToCStr( obj1, &bToFree2 ); if (arg2 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDriverShadow_Delete(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg2, bToFree2); } return NULL; } SWIGINTERN PyObject *_wrap_Driver_Rename(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:Driver_Rename",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_Rename" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Driver_Rename" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Driver_Rename" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDriverShadow_Rename(arg1,(char const *)arg2,(char const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_Driver_CopyFiles(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:Driver_CopyFiles",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_CopyFiles" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Driver_CopyFiles" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Driver_CopyFiles" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDriverShadow_CopyFiles(arg1,(char const *)arg2,(char const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_Driver_Register(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Driver_Register",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_Register" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDriverShadow_Register(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Driver_Deregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDriverShadow *arg1 = (GDALDriverShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Driver_Deregister",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Driver_Deregister" "', argument " "1"" of type '" "GDALDriverShadow *""'"); } arg1 = reinterpret_cast< GDALDriverShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALDriverShadow_Deregister(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *Driver_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALDriverShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_ColorEntry_c1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; short arg2 ; GDALColorEntry ce1 ; short val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:ColorEntry_c1_set",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } ecode2 = SWIG_AsVal_short(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorEntry_c1_set" "', argument " "2"" of type '" "short""'"); } arg2 = static_cast< short >(val2); if (arg1) (arg1)->c1 = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; GDALColorEntry ce1 ; PyObject * obj0 = 0 ; short result; if (!PyArg_ParseTuple(args,(char *)"O:ColorEntry_c1_get",&obj0)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } result = (short) ((arg1)->c1); resultobj = SWIG_From_short(static_cast< short >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; short arg2 ; GDALColorEntry ce1 ; short val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:ColorEntry_c2_set",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } ecode2 = SWIG_AsVal_short(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorEntry_c2_set" "', argument " "2"" of type '" "short""'"); } arg2 = static_cast< short >(val2); if (arg1) (arg1)->c2 = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; GDALColorEntry ce1 ; PyObject * obj0 = 0 ; short result; if (!PyArg_ParseTuple(args,(char *)"O:ColorEntry_c2_get",&obj0)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } result = (short) ((arg1)->c2); resultobj = SWIG_From_short(static_cast< short >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c3_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; short arg2 ; GDALColorEntry ce1 ; short val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:ColorEntry_c3_set",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } ecode2 = SWIG_AsVal_short(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorEntry_c3_set" "', argument " "2"" of type '" "short""'"); } arg2 = static_cast< short >(val2); if (arg1) (arg1)->c3 = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c3_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; GDALColorEntry ce1 ; PyObject * obj0 = 0 ; short result; if (!PyArg_ParseTuple(args,(char *)"O:ColorEntry_c3_get",&obj0)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } result = (short) ((arg1)->c3); resultobj = SWIG_From_short(static_cast< short >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c4_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; short arg2 ; GDALColorEntry ce1 ; short val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:ColorEntry_c4_set",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } ecode2 = SWIG_AsVal_short(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorEntry_c4_set" "', argument " "2"" of type '" "short""'"); } arg2 = static_cast< short >(val2); if (arg1) (arg1)->c4 = arg2; resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorEntry_c4_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; GDALColorEntry ce1 ; PyObject * obj0 = 0 ; short result; if (!PyArg_ParseTuple(args,(char *)"O:ColorEntry_c4_get",&obj0)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } result = (short) ((arg1)->c4); resultobj = SWIG_From_short(static_cast< short >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_ColorEntry(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_ColorEntry")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorEntry *)new GDALColorEntry(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) GDALColorEntry* */ if ( result != NULL ) resultobj = Py_BuildValue( "(hhhh)", (*result).c1,(*result).c2,(*result).c3,(*result).c4); else resultobj = NULL; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_ColorEntry(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorEntry *arg1 = (GDALColorEntry *) 0 ; GDALColorEntry ce1 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_ColorEntry",&obj0)) SWIG_fail; { /* %typemap(in) GDALColorEntry* */ ce1.c4 = 255; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj0,"hhh|h", &ce1.c1, &ce1.c2, &ce1.c3, &ce1.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg1 = &ce1; } { if ( bUseExceptions ) { CPLErrorReset(); } delete arg1; if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *ColorEntry_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALColorEntry, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_GCP_GCPX_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_GCPX_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPX_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GCP_GCPX_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPX_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPX_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GCP_GCPX_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPX_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPX_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPY_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_GCPY_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPY_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GCP_GCPY_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPY_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPY_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GCP_GCPY_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPY_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPY_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPZ_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_GCPZ_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPZ_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GCP_GCPZ_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPZ_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPZ_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GCP_GCPZ_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPZ_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPZ_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPPixel_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_GCPPixel_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPPixel_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GCP_GCPPixel_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPPixel_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPPixel_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GCP_GCPPixel_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPPixel_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPPixel_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPLine_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_GCPLine_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPLine_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GCP_GCPLine_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPLine_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_GCPLine_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GCP_GCPLine_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_GCPLine_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPLine_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_Info_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_Info_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_Info_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GCP_Info_set" "', argument " "2"" of type '" "char *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } /* char* Info memberin typemap */ GDAL_GCP_Info_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GCP_Info_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GCP_Info_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_Info_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDAL_GCP_Info_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GCP_Id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GCP_Id_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_Id_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GCP_Id_set" "', argument " "2"" of type '" "char *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } /* char* Info memberin typemap */ GDAL_GCP_Id_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GCP_Id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GCP_Id_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GCP_Id_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDAL_GCP_Id_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_new_GCP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; double arg1 = (double) 0.0 ; double arg2 = (double) 0.0 ; double arg3 = (double) 0.0 ; double arg4 = (double) 0.0 ; double arg5 = (double) 0.0 ; char *arg6 = (char *) "" ; char *arg7 = (char *) "" ; double val1 ; int ecode1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; double val4 ; int ecode4 = 0 ; double val5 ; int ecode5 = 0 ; int res6 ; char *buf6 = 0 ; int alloc6 = 0 ; int res7 ; char *buf7 = 0 ; int alloc7 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; GDAL_GCP *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"|OOOOOOO:new_GCP",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; if (obj0) { ecode1 = SWIG_AsVal_double(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_GCP" "', argument " "1"" of type '" "double""'"); } arg1 = static_cast< double >(val1); } if (obj1) { ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_GCP" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); } if (obj2) { ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_GCP" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); } if (obj3) { ecode4 = SWIG_AsVal_double(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_GCP" "', argument " "4"" of type '" "double""'"); } arg4 = static_cast< double >(val4); } if (obj4) { ecode5 = SWIG_AsVal_double(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_GCP" "', argument " "5"" of type '" "double""'"); } arg5 = static_cast< double >(val5); } if (obj5) { res6 = SWIG_AsCharPtrAndSize(obj5, &buf6, NULL, &alloc6); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_GCP" "', argument " "6"" of type '" "char const *""'"); } arg6 = reinterpret_cast< char * >(buf6); } if (obj6) { res7 = SWIG_AsCharPtrAndSize(obj6, &buf7, NULL, &alloc7); if (!SWIG_IsOK(res7)) { SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_GCP" "', argument " "7"" of type '" "char const *""'"); } arg7 = reinterpret_cast< char * >(buf7); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDAL_GCP *)new_GDAL_GCP(arg1,arg2,arg3,arg4,arg5,(char const *)arg6,(char const *)arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDAL_GCP, SWIG_POINTER_NEW | 0 ); if (alloc6 == SWIG_NEWOBJ) delete[] buf6; if (alloc7 == SWIG_NEWOBJ) delete[] buf7; return resultobj; fail: if (alloc6 == SWIG_NEWOBJ) delete[] buf6; if (alloc7 == SWIG_NEWOBJ) delete[] buf7; return NULL; } SWIGINTERN PyObject *_wrap_delete_GCP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_GCP",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_GCP" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_GDAL_GCP(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *GCP_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDAL_GCP, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPX_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_GCPX_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPX_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPX_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPX_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_GCPX_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPX_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_GCPX_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPX_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPY_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_GCPY_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPY_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPY_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPY_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_GCPY_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPY_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_GCPY_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPY_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPZ_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_GCPZ_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPZ_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPZ_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPZ_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_GCPZ_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPZ_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_GCPZ_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPZ_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPPixel_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_GCPPixel_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPPixel_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPPixel_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPPixel_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_GCPPixel_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPPixel_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_GCPPixel_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPPixel_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPLine_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_GCPLine_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPLine_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_GCPLine_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_GCPLine_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_GCPLine_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_GCPLine_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_GCPLine_set" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_GCPLine_set(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_Info_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_Info_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_Info_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDAL_GCP_Info_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_Info_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_Info_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_Info_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GDAL_GCP_Info_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_Info_set(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_Id_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_Id_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_Id_get" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDAL_GCP_Id_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_Id_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_Id_set",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_Id_set" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GDAL_GCP_Id_set" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_Id_set(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_GCPX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_GCPX",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_GCPX" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_get_GCPX(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_GCPX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_GCPX",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_GCPX" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_set_GCPX" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_GCPX(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_GCPY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_GCPY",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_GCPY" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_get_GCPY(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_GCPY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_GCPY",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_GCPY" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_set_GCPY" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_GCPY(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_GCPZ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_GCPZ",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_GCPZ" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_get_GCPZ(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_GCPZ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_GCPZ",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_GCPZ" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_set_GCPZ" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_GCPZ(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_GCPPixel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_GCPPixel",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_GCPPixel" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_get_GCPPixel(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_GCPPixel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_GCPPixel",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_GCPPixel" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_set_GCPPixel" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_GCPPixel(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_GCPLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_GCPLine",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_GCPLine" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDAL_GCP_get_GCPLine(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_GCPLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_GCPLine",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_GCPLine" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GDAL_GCP_set_GCPLine" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_GCPLine(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_Info(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_Info",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_Info" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDAL_GCP_get_Info(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_Info(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_Info",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_Info" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GDAL_GCP_set_Info" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_Info(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_get_Id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GDAL_GCP_get_Id",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_get_Id" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDAL_GCP_get_Id(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDAL_GCP_set_Id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDAL_GCP *arg1 = (GDAL_GCP *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:GDAL_GCP_set_Id",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDAL_GCP, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GDAL_GCP_set_Id" "', argument " "1"" of type '" "GDAL_GCP *""'"); } arg1 = reinterpret_cast< GDAL_GCP * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GDAL_GCP_set_Id" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } GDAL_GCP_set_Id(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_GCPsToGeoTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int arg1 ; GDAL_GCP *arg2 = (GDAL_GCP *) 0 ; double *arg3 ; int arg4 = (int) 1 ; GDAL_GCP *tmpGCPList1 ; double argout3[6] ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; RETURN_NONE result; { /* %typemap(in,numinputs=0) (double argout3[ANY]) */ arg3 = argout3; } if (!PyArg_ParseTuple(args,(char *)"O|O:GCPsToGeoTransform",&obj0,&obj1)) SWIG_fail; { /* %typemap(in,numinputs=1) (int nGCPs, GDAL_GCP const *pGCPs ) */ /* check if is List */ if ( !PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg1 = PySequence_Size(obj0); tmpGCPList1 = (GDAL_GCP*) malloc(arg1*sizeof(GDAL_GCP)); arg2 = tmpGCPList1; for( int i = 0; i<arg1; i++ ) { PyObject *o = PySequence_GetItem(obj0,i); GDAL_GCP *item = 0; SWIG_ConvertPtr( o, (void**)&item, SWIGTYPE_p_GDAL_GCP, SWIG_POINTER_EXCEPTION | 0 ); if ( ! item ) { Py_DECREF(o); SWIG_fail; } memcpy( (void*) tmpGCPList1, (void*) item, sizeof( GDAL_GCP ) ); ++tmpGCPList1; Py_DECREF(o); } } if (obj1) { ecode4 = SWIG_AsVal_int(obj1, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "GCPsToGeoTransform" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); } { if ( bUseExceptions ) { CPLErrorReset(); } result = GDALGCPsToGeoTransform(arg1,(GDAL_GCP const *)arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } /*%typemap(out) IF_FALSE_RETURN_NONE */ { /* %typemap(argout) (double argout[ANY]) */ PyObject *out = CreateTupleFromDoubleArray( arg3, 6 ); resultobj = t_output_helper(resultobj,out); } { /* %typemap(freearg) (int nGCPs, GDAL_GCP const *pGCPs ) */ if (arg2) { free( (void*) arg2 ); } } { /* %typemap(ret) IF_FALSE_RETURN_NONE */ if (result == 0 ) { Py_XDECREF( resultobj ); resultobj = Py_None; Py_INCREF(resultobj); } if (resultobj == 0) { resultobj = Py_None; Py_INCREF(resultobj); } } return resultobj; fail: { /* %typemap(freearg) (int nGCPs, GDAL_GCP const *pGCPs ) */ if (arg2) { free( (void*) arg2 ); } } return NULL; } SWIGINTERN PyObject *_wrap_delete_VirtualMem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; CPLVirtualMemShadow *arg1 = (CPLVirtualMemShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_VirtualMem",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CPLVirtualMemShadow, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_VirtualMem" "', argument " "1"" of type '" "CPLVirtualMemShadow *""'"); } arg1 = reinterpret_cast< CPLVirtualMemShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_CPLVirtualMemShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VirtualMem_GetAddr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; CPLVirtualMemShadow *arg1 = (CPLVirtualMemShadow *) 0 ; void **arg2 = (void **) 0 ; size_t *arg3 = (size_t *) 0 ; GDALDataType *arg4 = (GDALDataType *) 0 ; int *arg5 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *ptr2 ; size_t nsize2 ; GDALDataType datatype2 ; int readonly2 ; PyObject * obj0 = 0 ; { /* %typemap(in,numinputs=0) (void** pptr, size_t* pnsize, GDALDataType* pdatatype, int* preadonly) */ arg2 = &ptr2; arg3 = &nsize2; arg4 = &datatype2; arg5 = &readonly2; } if (!PyArg_ParseTuple(args,(char *)"O:VirtualMem_GetAddr",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CPLVirtualMemShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VirtualMem_GetAddr" "', argument " "1"" of type '" "CPLVirtualMemShadow *""'"); } arg1 = reinterpret_cast< CPLVirtualMemShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } CPLVirtualMemShadow_GetAddr(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { #if PY_VERSION_HEX >= 0x02070000 /* %typemap(argout) (void** pptr, size_t* pnsize, GDALDataType* pdatatype, int* preadonly)*/ Py_buffer *buf=(Py_buffer*)malloc(sizeof(Py_buffer)); if (PyBuffer_FillInfo(buf, obj0, *(arg2), *(arg3), *(arg5), PyBUF_ND)) { // error, handle } if( *(arg4) == GDT_Byte ) { buf->format = "B"; buf->itemsize = 1; } else if( *(arg4) == GDT_Int16 ) { buf->format = "h"; buf->itemsize = 2; } else if( *(arg4) == GDT_UInt16 ) { buf->format = "H"; buf->itemsize = 2; } else if( *(arg4) == GDT_Int32 ) { buf->format = "i"; buf->itemsize = 4; } else if( *(arg4) == GDT_UInt32 ) { buf->format = "I"; buf->itemsize = 4; } else if( *(arg4) == GDT_Float32 ) { buf->format = "f"; buf->itemsize = 4; } else if( *(arg4) == GDT_Float64 ) { buf->format = "F"; buf->itemsize = 8; } else { buf->format = "B"; buf->itemsize = 1; } resultobj = PyMemoryView_FromBuffer(buf); #else PyErr_SetString( PyExc_RuntimeError, "needs Python 2.7 or later" ); SWIG_fail; #endif } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VirtualMem_Pin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; CPLVirtualMemShadow *arg1 = (CPLVirtualMemShadow *) 0 ; size_t arg2 = (size_t) 0 ; size_t arg3 = (size_t) 0 ; int arg4 = (int) 0 ; void *argp1 = 0 ; int res1 = 0 ; size_t val2 ; int ecode2 = 0 ; size_t val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|OOO:VirtualMem_Pin",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CPLVirtualMemShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VirtualMem_Pin" "', argument " "1"" of type '" "CPLVirtualMemShadow *""'"); } arg1 = reinterpret_cast< CPLVirtualMemShadow * >(argp1); if (obj1) { ecode2 = SWIG_AsVal_size_t(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "VirtualMem_Pin" "', argument " "2"" of type '" "size_t""'"); } arg2 = static_cast< size_t >(val2); } if (obj2) { ecode3 = SWIG_AsVal_size_t(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "VirtualMem_Pin" "', argument " "3"" of type '" "size_t""'"); } arg3 = static_cast< size_t >(val3); } if (obj3) { ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "VirtualMem_Pin" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); } { if ( bUseExceptions ) { CPLErrorReset(); } CPLVirtualMemShadow_Pin(arg1,arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *VirtualMem_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_CPLVirtualMemShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_delete_AsyncReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALAsyncReaderShadow *arg1 = (GDALAsyncReaderShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_AsyncReader",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALAsyncReaderShadow, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_AsyncReader" "', argument " "1"" of type '" "GDALAsyncReaderShadow *""'"); } arg1 = reinterpret_cast< GDALAsyncReaderShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_GDALAsyncReaderShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_AsyncReader_GetNextUpdatedRegion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALAsyncReaderShadow *arg1 = (GDALAsyncReaderShadow *) 0 ; double arg2 ; int *arg3 = (int *) 0 ; int *arg4 = (int *) 0 ; int *arg5 = (int *) 0 ; int *arg6 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; int temp3 ; int res3 = SWIG_TMPOBJ ; int temp4 ; int res4 = SWIG_TMPOBJ ; int temp5 ; int res5 = SWIG_TMPOBJ ; int temp6 ; int res6 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALAsyncStatusType result; arg3 = &temp3; arg4 = &temp4; arg5 = &temp5; arg6 = &temp6; if (!PyArg_ParseTuple(args,(char *)"OO:AsyncReader_GetNextUpdatedRegion",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALAsyncReaderShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AsyncReader_GetNextUpdatedRegion" "', argument " "1"" of type '" "GDALAsyncReaderShadow *""'"); } arg1 = reinterpret_cast< GDALAsyncReaderShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "AsyncReader_GetNextUpdatedRegion" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALAsyncStatusType)GDALAsyncReaderShadow_GetNextUpdatedRegion(arg1,arg2,arg3,arg4,arg5,arg6); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res4)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg4))); } else { int new_flags = SWIG_IsNewObj(res4) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg4), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res5)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg5))); } else { int new_flags = SWIG_IsNewObj(res5) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res6)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg6))); } else { int new_flags = SWIG_IsNewObj(res6) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg6), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_AsyncReader_GetBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALAsyncReaderShadow *arg1 = (GDALAsyncReaderShadow *) 0 ; void **arg2 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *pyObject2 = NULL ; PyObject * obj0 = 0 ; { /* %typemap(in,numinputs=0) ( void **outPythonObject ) ( void *pyObject2 = NULL ) */ arg2 = &pyObject2; } if (!PyArg_ParseTuple(args,(char *)"O:AsyncReader_GetBuffer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALAsyncReaderShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AsyncReader_GetBuffer" "', argument " "1"" of type '" "GDALAsyncReaderShadow *""'"); } arg1 = reinterpret_cast< GDALAsyncReaderShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALAsyncReaderShadow_GetBuffer(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(argout) ( void **outPythonObject ) */ Py_XDECREF(resultobj); if (*arg2) { resultobj = (PyObject*)*arg2; } else { resultobj = Py_None; Py_INCREF(resultobj); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_AsyncReader_LockBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALAsyncReaderShadow *arg1 = (GDALAsyncReaderShadow *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:AsyncReader_LockBuffer",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALAsyncReaderShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AsyncReader_LockBuffer" "', argument " "1"" of type '" "GDALAsyncReaderShadow *""'"); } arg1 = reinterpret_cast< GDALAsyncReaderShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "AsyncReader_LockBuffer" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALAsyncReaderShadow_LockBuffer(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_AsyncReader_UnlockBuffer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALAsyncReaderShadow *arg1 = (GDALAsyncReaderShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:AsyncReader_UnlockBuffer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALAsyncReaderShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AsyncReader_UnlockBuffer" "', argument " "1"" of type '" "GDALAsyncReaderShadow *""'"); } arg1 = reinterpret_cast< GDALAsyncReaderShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALAsyncReaderShadow_UnlockBuffer(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *AsyncReader_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALAsyncReaderShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_Dataset_RasterXSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_RasterXSize_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_RasterXSize_get" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDatasetShadow_RasterXSize_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_RasterYSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_RasterYSize_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_RasterYSize_get" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDatasetShadow_RasterYSize_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_RasterCount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_RasterCount_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_RasterCount_get" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDatasetShadow_RasterCount_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_Dataset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_Dataset",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Dataset" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_GDALDatasetShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetDriver(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALDriverShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetDriver",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetDriver" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDriverShadow *)GDALDatasetShadow_GetDriver(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetRasterBand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALRasterBandShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:Dataset_GetRasterBand",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetRasterBand" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_GetRasterBand" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRasterBandShadow *)GDALDatasetShadow_GetRasterBand(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetProjection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetProjection",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetProjection" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDatasetShadow_GetProjection(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetProjectionRef(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetProjectionRef",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetProjectionRef" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDatasetShadow_GetProjectionRef(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_SetProjection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Dataset_SetProjection",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_SetProjection" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Dataset_SetProjection" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_SetProjection(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetGeoTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; double *arg2 ; int *arg3 = (int *) 0 ; int *arg4 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double argout2[6] ; int isvalid2 ; int val4 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char * kwnames[] = { (char *) "self",(char *) "can_return_null", NULL }; { /* %typemap(in,numinputs=0) (double argout2[6], int* isvalid2) */ arg2 = argout2; arg3 = &isvalid2; } if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:Dataset_GetGeoTransform",kwnames,&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetGeoTransform" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); if (obj1) { { /* %typemap(in) (int *optional_##int) */ if ( obj1 == Py_None ) { arg4 = 0; } else if ( PyArg_Parse( obj1,"i" ,&val4 ) ) { arg4 = (int *) &val4; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } { if ( bUseExceptions ) { CPLErrorReset(); } GDALDatasetShadow_GetGeoTransform(arg1,arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(argout) (double argout[6], int* isvalid) */ PyObject *r; if ( !*arg3 ) { Py_INCREF(Py_None); r = Py_None; } else { r = CreateTupleFromDoubleArray(arg2, 6); } resultobj = t_output_helper(resultobj,r); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_SetGeoTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; double *arg2 ; void *argp1 = 0 ; int res1 = 0 ; double argin2[6] ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Dataset_SetGeoTransform",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_SetGeoTransform" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { /* %typemap(in) (double argin2[ANY]) */ arg2 = argin2; if (! PySequence_Check(obj1) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int seq_size = PySequence_Size(obj1); if ( seq_size != 6 ) { PyErr_SetString(PyExc_TypeError, "sequence must have length ##size"); SWIG_fail; } for (unsigned int i=0; i<6; i++) { PyObject *o = PySequence_GetItem(obj1,i); double val; if ( !PyArg_Parse(o, "d", &val ) ) { PyErr_SetString(PyExc_TypeError, "not a number"); Py_DECREF(o); SWIG_fail; } arg2[i] = val; Py_DECREF(o); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_SetGeoTransform(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_BuildOverviews(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; char *arg2 = (char *) "NEAREST" ; int arg3 = (int) 0 ; int *arg4 = (int *) 0 ; GDALProgressFunc arg5 = (GDALProgressFunc) NULL ; void *arg6 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; char * kwnames[] = { (char *) "self",(char *) "resampling",(char *) "overviewlist",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg6 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOO:Dataset_BuildOverviews",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_BuildOverviews" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); if (obj1) { res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Dataset_BuildOverviews" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); } if (obj2) { { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj2) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg3 = PySequence_Size(obj2); arg4 = (int*) malloc(arg3*sizeof(int)); for( int i = 0; i<arg3; i++ ) { PyObject *o = PySequence_GetItem(obj2,i); if ( !PyArg_Parse(o,"i",&arg4[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } } if (obj3) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj3 && obj3 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj3, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg5 = GDALTermProgress; } else { if (!PyCallable_Check(obj3)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj3; arg5 = PyProgressProxy; } } } } if (obj4) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj4 ; } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDatasetShadow_BuildOverviews(arg1,(char const *)arg2,arg3,arg4,arg5,arg6); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; { /* %typemap(freearg) (int nList, int* pList) */ if (arg4) { free((void*) arg4); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; { /* %typemap(freearg) (int nList, int* pList) */ if (arg4) { free((void*) arg4); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetGCPCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetGCPCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetGCPCount" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDatasetShadow_GetGCPCount(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetGCPProjection(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetGCPProjection",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetGCPProjection" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDatasetShadow_GetGCPProjection(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetGCPs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int *arg2 = (int *) 0 ; GDAL_GCP **arg3 = (GDAL_GCP **) 0 ; void *argp1 = 0 ; int res1 = 0 ; int nGCPs2 = 0 ; GDAL_GCP *pGCPs2 = 0 ; PyObject * obj0 = 0 ; { /* %typemap(in,numinputs=0) (int *nGCPs2, GDAL_GCP const **pGCPs2 ) */ arg2 = &nGCPs2; arg3 = &pGCPs2; } if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetGCPs",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetGCPs" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALDatasetShadow_GetGCPs(arg1,arg2,(GDAL_GCP const **)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(argout) (int *nGCPs, GDAL_GCP const **pGCPs ) */ PyObject *dict = PyTuple_New( *arg2 ); for( int i = 0; i < *arg2; i++ ) { GDAL_GCP *o = new_GDAL_GCP( (*arg3)[i].dfGCPX, (*arg3)[i].dfGCPY, (*arg3)[i].dfGCPZ, (*arg3)[i].dfGCPPixel, (*arg3)[i].dfGCPLine, (*arg3)[i].pszInfo, (*arg3)[i].pszId ); PyTuple_SetItem(dict, i, SWIG_NewPointerObj((void*)o,SWIGTYPE_p_GDAL_GCP,1) ); } Py_DECREF(resultobj); resultobj = dict; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_SetGCPs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; GDAL_GCP *arg3 = (GDAL_GCP *) 0 ; char *arg4 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; GDAL_GCP *tmpGCPList2 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OOO:Dataset_SetGCPs",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_SetGCPs" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { /* %typemap(in,numinputs=1) (int nGCPs, GDAL_GCP const *pGCPs ) */ /* check if is List */ if ( !PySequence_Check(obj1) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg2 = PySequence_Size(obj1); tmpGCPList2 = (GDAL_GCP*) malloc(arg2*sizeof(GDAL_GCP)); arg3 = tmpGCPList2; for( int i = 0; i<arg2; i++ ) { PyObject *o = PySequence_GetItem(obj1,i); GDAL_GCP *item = 0; SWIG_ConvertPtr( o, (void**)&item, SWIGTYPE_p_GDAL_GCP, SWIG_POINTER_EXCEPTION | 0 ); if ( ! item ) { Py_DECREF(o); SWIG_fail; } memcpy( (void*) tmpGCPList2, (void*) item, sizeof( GDAL_GCP ) ); ++tmpGCPList2; Py_DECREF(o); } } res4 = SWIG_AsCharPtrAndSize(obj2, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "Dataset_SetGCPs" "', argument " "4"" of type '" "char const *""'"); } arg4 = reinterpret_cast< char * >(buf4); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_SetGCPs(arg1,arg2,(GDAL_GCP const *)arg3,(char const *)arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (int nGCPs, GDAL_GCP const *pGCPs ) */ if (arg3) { free( (void*) arg3 ); } } if (alloc4 == SWIG_NEWOBJ) delete[] buf4; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: { /* %typemap(freearg) (int nGCPs, GDAL_GCP const *pGCPs ) */ if (arg3) { free( (void*) arg3 ); } } if (alloc4 == SWIG_NEWOBJ) delete[] buf4; return NULL; } SWIGINTERN PyObject *_wrap_Dataset_FlushCache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_FlushCache",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_FlushCache" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALDatasetShadow_FlushCache(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_AddBand(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; GDALDataType arg2 = (GDALDataType) GDT_Byte ; char **arg3 = (char **) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char * kwnames[] = { (char *) "self",(char *) "datatype",(char *) "options", NULL }; CPLErr result; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OO:Dataset_AddBand",kwnames,&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_AddBand" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); if (obj1) { ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_AddBand" "', argument " "2"" of type '" "GDALDataType""'"); } arg2 = static_cast< GDALDataType >(val2); } if (obj2) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj2) || PyUnicode_Check(obj2) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj2) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj2,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg3 = CSLAddString( arg3, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg3 = CSLAddString( arg3, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg3 = CSLAddString( arg3, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_AddBand(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } return NULL; } SWIGINTERN PyObject *_wrap_Dataset_CreateMaskBand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Dataset_CreateMaskBand",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_CreateMaskBand" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_CreateMaskBand" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_CreateMaskBand(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetFileList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Dataset_GetFileList",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetFileList" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GDALDatasetShadow_GetFileList(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **CSL -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } CSLDestroy(result); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_WriteRaster(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; int arg3 ; int arg4 ; int arg5 ; GIntBig arg6 ; char *arg7 = (char *) 0 ; int *arg8 = (int *) 0 ; int *arg9 = (int *) 0 ; GDALDataType *arg10 = (GDALDataType *) 0 ; int arg11 = (int) 0 ; int *arg12 = (int *) 0 ; int *arg13 = (int *) 0 ; int *arg14 = (int *) 0 ; int *arg15 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int alloc6 = 0 ; int val8 ; int val9 ; int val10 ; int val13 ; int val14 ; int val15 ; 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 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xoff",(char *) "yoff",(char *) "xsize",(char *) "ysize",(char *) "buf_len",(char *) "buf_xsize",(char *) "buf_ysize",(char *) "buf_type",(char *) "band_list",(char *) "buf_pixel_space",(char *) "buf_line_space",(char *) "buf_band_space", NULL }; CPLErr result; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOO|OOOOOOO:Dataset_WriteRaster",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_WriteRaster" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_WriteRaster" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Dataset_WriteRaster" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Dataset_WriteRaster" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Dataset_WriteRaster" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); { /* %typemap(in,numinputs=1) (GIntBig nLen, char *pBuf ) */ #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj5)) { size_t safeLen = 0; int ret = SWIG_AsCharPtrAndSize(obj5, (char**) &arg7, &safeLen, &alloc6); if (!SWIG_IsOK(ret)) { SWIG_exception( SWIG_RuntimeError, "invalid Unicode string" ); } if (safeLen) safeLen--; arg6 = (GIntBig) safeLen; } else if (PyBytes_Check(obj5)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj5, (char**) &arg7, &safeLen); arg6 = (GIntBig) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a unicode string or a bytes"); SWIG_fail; } #else if (PyString_Check(obj5)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj5, (char**) &arg7, &safeLen); arg6 = (GIntBig) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } if (obj6) { { /* %typemap(in) (int *optional_##int) */ if ( obj6 == Py_None ) { arg8 = 0; } else if ( PyArg_Parse( obj6,"i" ,&val8 ) ) { arg8 = (int *) &val8; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj7) { { /* %typemap(in) (int *optional_##int) */ if ( obj7 == Py_None ) { arg9 = 0; } else if ( PyArg_Parse( obj7,"i" ,&val9 ) ) { arg9 = (int *) &val9; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj8) { { /* %typemap(in) (int *optional_##int) */ if ( obj8 == Py_None ) { arg10 = 0; } else if ( PyArg_Parse( obj8,"i" ,&val10 ) ) { arg10 = (GDALDataType *) &val10; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj9) { { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj9) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg11 = PySequence_Size(obj9); arg12 = (int*) malloc(arg11*sizeof(int)); for( int i = 0; i<arg11; i++ ) { PyObject *o = PySequence_GetItem(obj9,i); if ( !PyArg_Parse(o,"i",&arg12[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } } if (obj10) { { /* %typemap(in) (int *optional_##int) */ if ( obj10 == Py_None ) { arg13 = 0; } else if ( PyArg_Parse( obj10,"i" ,&val13 ) ) { arg13 = (int *) &val13; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj11) { { /* %typemap(in) (int *optional_##int) */ if ( obj11 == Py_None ) { arg14 = 0; } else if ( PyArg_Parse( obj11,"i" ,&val14 ) ) { arg14 = (int *) &val14; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj12) { { /* %typemap(in) (int *optional_##int) */ if ( obj12 == Py_None ) { arg15 = 0; } else if ( PyArg_Parse( obj12,"i" ,&val15 ) ) { arg15 = (int *) &val15; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_WriteRaster(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (GIntBig *nLen, char *pBuf ) */ if( alloc6 == SWIG_NEWOBJ ) { delete[] arg7; } } { /* %typemap(freearg) (int nList, int* pList) */ if (arg12) { free((void*) arg12); } } { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: { /* %typemap(freearg) (GIntBig *nLen, char *pBuf ) */ if( alloc6 == SWIG_NEWOBJ ) { delete[] arg7; } } { /* %typemap(freearg) (int nList, int* pList) */ if (arg12) { free((void*) arg12); } } return NULL; } SWIGINTERN PyObject *_wrap_Dataset_BeginAsyncReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; int arg3 ; int arg4 ; int arg5 ; int arg6 ; char *arg7 = (char *) 0 ; void *arg8 = (void *) 0 ; int arg9 ; int arg10 ; GDALDataType arg11 = (GDALDataType) (GDALDataType) 0 ; int arg12 = (int) 0 ; int *arg13 = (int *) 0 ; int arg14 = (int) 0 ; int arg15 = (int) 0 ; int arg16 = (int) 0 ; char **arg17 = (char **) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int val9 ; int ecode9 = 0 ; int val10 ; int ecode10 = 0 ; int val11 ; int ecode11 = 0 ; int val14 ; int ecode14 = 0 ; int val15 ; int ecode15 = 0 ; int val16 ; int ecode16 = 0 ; 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 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; PyObject * obj13 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xOff",(char *) "yOff",(char *) "xSize",(char *) "ySize",(char *) "buf_len",(char *) "buf_xsize",(char *) "buf_ysize",(char *) "bufType",(char *) "band_list",(char *) "nPixelSpace",(char *) "nLineSpace",(char *) "nBandSpace",(char *) "options", NULL }; GDALAsyncReaderShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOOOO|OOOOOO:Dataset_BeginAsyncReader",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_BeginAsyncReader" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_BeginAsyncReader" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Dataset_BeginAsyncReader" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Dataset_BeginAsyncReader" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Dataset_BeginAsyncReader" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); { /* %typemap(in,numinputs=1) (int nLenKeepObject, char *pBufKeepObject, void* pyObject) */ #if PY_VERSION_HEX>=0x03000000 if (PyBytes_Check(obj5)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj5, (char**) &arg7, &safeLen); arg6 = (int) safeLen; arg8 = obj5; } else { PyErr_SetString(PyExc_TypeError, "not a bytes"); SWIG_fail; } #else if (PyString_Check(obj5)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj5, (char**) &arg7, &safeLen); arg6 = (int) safeLen; arg8 = obj5; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } ecode9 = SWIG_AsVal_int(obj6, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "Dataset_BeginAsyncReader" "', argument " "9"" of type '" "int""'"); } arg9 = static_cast< int >(val9); ecode10 = SWIG_AsVal_int(obj7, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "Dataset_BeginAsyncReader" "', argument " "10"" of type '" "int""'"); } arg10 = static_cast< int >(val10); if (obj8) { ecode11 = SWIG_AsVal_int(obj8, &val11); if (!SWIG_IsOK(ecode11)) { SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "Dataset_BeginAsyncReader" "', argument " "11"" of type '" "GDALDataType""'"); } arg11 = static_cast< GDALDataType >(val11); } if (obj9) { { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj9) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg12 = PySequence_Size(obj9); arg13 = (int*) malloc(arg12*sizeof(int)); for( int i = 0; i<arg12; i++ ) { PyObject *o = PySequence_GetItem(obj9,i); if ( !PyArg_Parse(o,"i",&arg13[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } } if (obj10) { ecode14 = SWIG_AsVal_int(obj10, &val14); if (!SWIG_IsOK(ecode14)) { SWIG_exception_fail(SWIG_ArgError(ecode14), "in method '" "Dataset_BeginAsyncReader" "', argument " "14"" of type '" "int""'"); } arg14 = static_cast< int >(val14); } if (obj11) { ecode15 = SWIG_AsVal_int(obj11, &val15); if (!SWIG_IsOK(ecode15)) { SWIG_exception_fail(SWIG_ArgError(ecode15), "in method '" "Dataset_BeginAsyncReader" "', argument " "15"" of type '" "int""'"); } arg15 = static_cast< int >(val15); } if (obj12) { ecode16 = SWIG_AsVal_int(obj12, &val16); if (!SWIG_IsOK(ecode16)) { SWIG_exception_fail(SWIG_ArgError(ecode16), "in method '" "Dataset_BeginAsyncReader" "', argument " "16"" of type '" "int""'"); } arg16 = static_cast< int >(val16); } if (obj13) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj13) || PyUnicode_Check(obj13) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj13) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj13); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj13,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg17 = CSLAddString( arg17, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg17 = CSLAddString( arg17, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg17 = CSLAddString( arg17, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALAsyncReaderShadow *)GDALDatasetShadow_BeginAsyncReader(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15,arg16,arg17); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALAsyncReaderShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (int nList, int* pList) */ if (arg13) { free((void*) arg13); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg17 ); } return resultobj; fail: { /* %typemap(freearg) (int nList, int* pList) */ if (arg13) { free((void*) arg13); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg17 ); } return NULL; } SWIGINTERN PyObject *_wrap_Dataset_EndAsyncReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; GDALAsyncReaderShadow *arg2 = (GDALAsyncReaderShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:Dataset_EndAsyncReader",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_EndAsyncReader" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALAsyncReaderShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Dataset_EndAsyncReader" "', argument " "2"" of type '" "GDALAsyncReaderShadow *""'"); } arg2 = reinterpret_cast< GDALAsyncReaderShadow * >(argp2); { if ( bUseExceptions ) { CPLErrorReset(); } GDALDatasetShadow_EndAsyncReader(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetVirtualMem(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; GDALRWFlag arg2 ; int arg3 ; int arg4 ; int arg5 ; int arg6 ; int arg7 ; int arg8 ; GDALDataType arg9 ; int arg10 ; int *arg11 = (int *) 0 ; int arg12 ; size_t arg13 ; size_t arg14 ; char **arg15 = (char **) NULL ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int val6 ; int ecode6 = 0 ; int val7 ; int ecode7 = 0 ; int val8 ; int ecode8 = 0 ; int val9 ; int ecode9 = 0 ; int val12 ; int ecode12 = 0 ; size_t val13 ; int ecode13 = 0 ; size_t val14 ; int ecode14 = 0 ; 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 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; PyObject * obj13 = 0 ; char * kwnames[] = { (char *) "self",(char *) "eRWFlag",(char *) "nXOff",(char *) "nYOff",(char *) "nXSize",(char *) "nYSize",(char *) "nBufXSize",(char *) "nBufYSize",(char *) "eBufType",(char *) "band_list",(char *) "bIsBandSequential",(char *) "nCacheSize",(char *) "nPageSizeHint",(char *) "options", NULL }; CPLVirtualMemShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOOOOOOOOO|O:Dataset_GetVirtualMem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetVirtualMem" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_GetVirtualMem" "', argument " "2"" of type '" "GDALRWFlag""'"); } arg2 = static_cast< GDALRWFlag >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Dataset_GetVirtualMem" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Dataset_GetVirtualMem" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Dataset_GetVirtualMem" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); ecode6 = SWIG_AsVal_int(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Dataset_GetVirtualMem" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); ecode7 = SWIG_AsVal_int(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "Dataset_GetVirtualMem" "', argument " "7"" of type '" "int""'"); } arg7 = static_cast< int >(val7); ecode8 = SWIG_AsVal_int(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "Dataset_GetVirtualMem" "', argument " "8"" of type '" "int""'"); } arg8 = static_cast< int >(val8); ecode9 = SWIG_AsVal_int(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "Dataset_GetVirtualMem" "', argument " "9"" of type '" "GDALDataType""'"); } arg9 = static_cast< GDALDataType >(val9); { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj9) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg10 = PySequence_Size(obj9); arg11 = (int*) malloc(arg10*sizeof(int)); for( int i = 0; i<arg10; i++ ) { PyObject *o = PySequence_GetItem(obj9,i); if ( !PyArg_Parse(o,"i",&arg11[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } ecode12 = SWIG_AsVal_int(obj10, &val12); if (!SWIG_IsOK(ecode12)) { SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "Dataset_GetVirtualMem" "', argument " "12"" of type '" "int""'"); } arg12 = static_cast< int >(val12); ecode13 = SWIG_AsVal_size_t(obj11, &val13); if (!SWIG_IsOK(ecode13)) { SWIG_exception_fail(SWIG_ArgError(ecode13), "in method '" "Dataset_GetVirtualMem" "', argument " "13"" of type '" "size_t""'"); } arg13 = static_cast< size_t >(val13); ecode14 = SWIG_AsVal_size_t(obj12, &val14); if (!SWIG_IsOK(ecode14)) { SWIG_exception_fail(SWIG_ArgError(ecode14), "in method '" "Dataset_GetVirtualMem" "', argument " "14"" of type '" "size_t""'"); } arg14 = static_cast< size_t >(val14); if (obj13) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj13) || PyUnicode_Check(obj13) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj13) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj13); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj13,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg15 = CSLAddString( arg15, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg15 = CSLAddString( arg15, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg15 = CSLAddString( arg15, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLVirtualMemShadow *)GDALDatasetShadow_GetVirtualMem(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CPLVirtualMemShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (int nList, int* pList) */ if (arg11) { free((void*) arg11); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg15 ); } return resultobj; fail: { /* %typemap(freearg) (int nList, int* pList) */ if (arg11) { free((void*) arg11); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg15 ); } return NULL; } SWIGINTERN PyObject *_wrap_Dataset_GetTiledVirtualMem(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; GDALRWFlag arg2 ; int arg3 ; int arg4 ; int arg5 ; int arg6 ; int arg7 ; int arg8 ; GDALDataType arg9 ; int arg10 ; int *arg11 = (int *) 0 ; GDALTileOrganization arg12 ; size_t arg13 ; char **arg14 = (char **) NULL ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int val6 ; int ecode6 = 0 ; int val7 ; int ecode7 = 0 ; int val8 ; int ecode8 = 0 ; int val9 ; int ecode9 = 0 ; int val12 ; int ecode12 = 0 ; size_t val13 ; int ecode13 = 0 ; 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 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; PyObject * obj12 = 0 ; char * kwnames[] = { (char *) "self",(char *) "eRWFlag",(char *) "nXOff",(char *) "nYOff",(char *) "nXSize",(char *) "nYSize",(char *) "nTileXSize",(char *) "nTileYSize",(char *) "eBufType",(char *) "band_list",(char *) "eTileOrganization",(char *) "nCacheSize",(char *) "options", NULL }; CPLVirtualMemShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOOOOOOOO|O:Dataset_GetTiledVirtualMem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "2"" of type '" "GDALRWFlag""'"); } arg2 = static_cast< GDALRWFlag >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); ecode6 = SWIG_AsVal_int(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); ecode7 = SWIG_AsVal_int(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "7"" of type '" "int""'"); } arg7 = static_cast< int >(val7); ecode8 = SWIG_AsVal_int(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "8"" of type '" "int""'"); } arg8 = static_cast< int >(val8); ecode9 = SWIG_AsVal_int(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "9"" of type '" "GDALDataType""'"); } arg9 = static_cast< GDALDataType >(val9); { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj9) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg10 = PySequence_Size(obj9); arg11 = (int*) malloc(arg10*sizeof(int)); for( int i = 0; i<arg10; i++ ) { PyObject *o = PySequence_GetItem(obj9,i); if ( !PyArg_Parse(o,"i",&arg11[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } ecode12 = SWIG_AsVal_int(obj10, &val12); if (!SWIG_IsOK(ecode12)) { SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "12"" of type '" "GDALTileOrganization""'"); } arg12 = static_cast< GDALTileOrganization >(val12); ecode13 = SWIG_AsVal_size_t(obj11, &val13); if (!SWIG_IsOK(ecode13)) { SWIG_exception_fail(SWIG_ArgError(ecode13), "in method '" "Dataset_GetTiledVirtualMem" "', argument " "13"" of type '" "size_t""'"); } arg13 = static_cast< size_t >(val13); if (obj12) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj12) || PyUnicode_Check(obj12) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj12) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj12); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj12,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg14 = CSLAddString( arg14, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg14 = CSLAddString( arg14, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg14 = CSLAddString( arg14, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLVirtualMemShadow *)GDALDatasetShadow_GetTiledVirtualMem(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CPLVirtualMemShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (int nList, int* pList) */ if (arg11) { free((void*) arg11); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg14 ); } return resultobj; fail: { /* %typemap(freearg) (int nList, int* pList) */ if (arg11) { free((void*) arg11); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg14 ); } return NULL; } SWIGINTERN PyObject *_wrap_Dataset_ReadRaster1(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; int arg3 ; int arg4 ; int arg5 ; void **arg6 = (void **) 0 ; int *arg7 = (int *) 0 ; int *arg8 = (int *) 0 ; GDALDataType *arg9 = (GDALDataType *) 0 ; int arg10 = (int) 0 ; int *arg11 = (int *) 0 ; int *arg12 = (int *) 0 ; int *arg13 = (int *) 0 ; int *arg14 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; void *pyObject6 = NULL ; int val7 ; int val8 ; int val9 ; int val12 ; int val13 ; int val14 ; 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 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xoff",(char *) "yoff",(char *) "xsize",(char *) "ysize",(char *) "buf_xsize",(char *) "buf_ysize",(char *) "buf_type",(char *) "band_list",(char *) "buf_pixel_space",(char *) "buf_line_space",(char *) "buf_band_space", NULL }; CPLErr result; { /* %typemap(in,numinputs=0) ( void **outPythonObject ) ( void *pyObject6 = NULL ) */ arg6 = &pyObject6; } if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|OOOOOOO:Dataset_ReadRaster1",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Dataset_ReadRaster1" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Dataset_ReadRaster1" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Dataset_ReadRaster1" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Dataset_ReadRaster1" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Dataset_ReadRaster1" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); if (obj5) { { /* %typemap(in) (int *optional_##int) */ if ( obj5 == Py_None ) { arg7 = 0; } else if ( PyArg_Parse( obj5,"i" ,&val7 ) ) { arg7 = (int *) &val7; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj6) { { /* %typemap(in) (int *optional_##int) */ if ( obj6 == Py_None ) { arg8 = 0; } else if ( PyArg_Parse( obj6,"i" ,&val8 ) ) { arg8 = (int *) &val8; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj7) { { /* %typemap(in) (int *optional_##int) */ if ( obj7 == Py_None ) { arg9 = 0; } else if ( PyArg_Parse( obj7,"i" ,&val9 ) ) { arg9 = (GDALDataType *) &val9; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj8) { { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj8) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg10 = PySequence_Size(obj8); arg11 = (int*) malloc(arg10*sizeof(int)); for( int i = 0; i<arg10; i++ ) { PyObject *o = PySequence_GetItem(obj8,i); if ( !PyArg_Parse(o,"i",&arg11[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } } if (obj9) { { /* %typemap(in) (int *optional_##int) */ if ( obj9 == Py_None ) { arg12 = 0; } else if ( PyArg_Parse( obj9,"i" ,&val12 ) ) { arg12 = (int *) &val12; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj10) { { /* %typemap(in) (int *optional_##int) */ if ( obj10 == Py_None ) { arg13 = 0; } else if ( PyArg_Parse( obj10,"i" ,&val13 ) ) { arg13 = (int *) &val13; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj11) { { /* %typemap(in) (int *optional_##int) */ if ( obj11 == Py_None ) { arg14 = 0; } else if ( PyArg_Parse( obj11,"i" ,&val14 ) ) { arg14 = (int *) &val14; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALDatasetShadow_ReadRaster1(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) ( void **outPythonObject ) */ Py_XDECREF(resultobj); if (*arg6) { resultobj = (PyObject*)*arg6; } else { resultobj = Py_None; Py_INCREF(resultobj); } } { /* %typemap(freearg) (int nList, int* pList) */ if (arg11) { free((void*) arg11); } } { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: { /* %typemap(freearg) (int nList, int* pList) */ if (arg11) { free((void*) arg11); } } return NULL; } SWIGINTERN PyObject *Dataset_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALDatasetShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_Band_XSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Band_XSize_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_XSize_get" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_XSize_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_YSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Band_YSize_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_YSize_get" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_YSize_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_DataType_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALDataType result; if (!PyArg_ParseTuple(args,(char *)"O:Band_DataType_get",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_DataType_get" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDataType)GDALRasterBandShadow_DataType_get(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetBand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetBand",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetBand" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_GetBand(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetBlockSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int *arg2 = (int *) 0 ; int *arg3 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int temp2 ; int res2 = SWIG_TMPOBJ ; int temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetBlockSize",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetBlockSize" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_GetBlockSize(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_int, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetColorInterpretation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALColorInterp result; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetColorInterpretation",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetColorInterpretation" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorInterp)GDALRasterBandShadow_GetColorInterpretation(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetRasterColorInterpretation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALColorInterp result; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetRasterColorInterpretation",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetRasterColorInterpretation" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorInterp)GDALRasterBandShadow_GetRasterColorInterpretation(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetColorInterpretation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALColorInterp arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetColorInterpretation",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetColorInterpretation" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetColorInterpretation" "', argument " "2"" of type '" "GDALColorInterp""'"); } arg2 = static_cast< GDALColorInterp >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetColorInterpretation(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetRasterColorInterpretation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALColorInterp arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetRasterColorInterpretation",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetRasterColorInterpretation" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetRasterColorInterpretation" "', argument " "2"" of type '" "GDALColorInterp""'"); } arg2 = static_cast< GDALColorInterp >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetRasterColorInterpretation(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetNoDataValue(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 = (double *) 0 ; int *arg3 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double tmpval2 ; int tmphasval2 ; PyObject * obj0 = 0 ; { /* %typemap(python,in,numinputs=0) (double *val, int*hasval) */ arg2 = &tmpval2; arg3 = &tmphasval2; } if (!PyArg_ParseTuple(args,(char *)"O:Band_GetNoDataValue",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetNoDataValue" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_GetNoDataValue(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(python,argout) (double *val, int*hasval) */ PyObject *r; if ( !*arg3 ) { Py_INCREF(Py_None); r = Py_None; resultobj = t_output_helper(resultobj,r); } else { r = PyFloat_FromDouble( *arg2 ); resultobj = t_output_helper(resultobj,r); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetNoDataValue(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetNoDataValue",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetNoDataValue" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetNoDataValue" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetNoDataValue(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetUnitType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetUnitType",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetUnitType" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALRasterBandShadow_GetUnitType(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetUnitType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; char *arg2 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetUnitType",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetUnitType" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Band_SetUnitType" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetUnitType(arg1,(char const *)arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_Band_GetRasterCategoryNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetRasterCategoryNames",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetRasterCategoryNames" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GDALRasterBandShadow_GetRasterCategoryNames(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **options -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetRasterCategoryNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; char **arg2 = (char **) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetRasterCategoryNames",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetRasterCategoryNames" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj1) || PyUnicode_Check(obj1) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj1) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj1); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj1,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg2 = CSLAddString( arg2, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg2 = CSLAddString( arg2, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg2 = CSLAddString( arg2, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetRasterCategoryNames(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg2 ); } { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg2 ); } return NULL; } SWIGINTERN PyObject *_wrap_Band_GetMinimum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 = (double *) 0 ; int *arg3 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double tmpval2 ; int tmphasval2 ; PyObject * obj0 = 0 ; { /* %typemap(python,in,numinputs=0) (double *val, int*hasval) */ arg2 = &tmpval2; arg3 = &tmphasval2; } if (!PyArg_ParseTuple(args,(char *)"O:Band_GetMinimum",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetMinimum" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_GetMinimum(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(python,argout) (double *val, int*hasval) */ PyObject *r; if ( !*arg3 ) { Py_INCREF(Py_None); r = Py_None; resultobj = t_output_helper(resultobj,r); } else { r = PyFloat_FromDouble( *arg2 ); resultobj = t_output_helper(resultobj,r); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetMaximum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 = (double *) 0 ; int *arg3 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double tmpval2 ; int tmphasval2 ; PyObject * obj0 = 0 ; { /* %typemap(python,in,numinputs=0) (double *val, int*hasval) */ arg2 = &tmpval2; arg3 = &tmphasval2; } if (!PyArg_ParseTuple(args,(char *)"O:Band_GetMaximum",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetMaximum" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_GetMaximum(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(python,argout) (double *val, int*hasval) */ PyObject *r; if ( !*arg3 ) { Py_INCREF(Py_None); r = Py_None; resultobj = t_output_helper(resultobj,r); } else { r = PyFloat_FromDouble( *arg2 ); resultobj = t_output_helper(resultobj,r); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 = (double *) 0 ; int *arg3 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double tmpval2 ; int tmphasval2 ; PyObject * obj0 = 0 ; { /* %typemap(python,in,numinputs=0) (double *val, int*hasval) */ arg2 = &tmpval2; arg3 = &tmphasval2; } if (!PyArg_ParseTuple(args,(char *)"O:Band_GetOffset",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetOffset" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_GetOffset(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(python,argout) (double *val, int*hasval) */ PyObject *r; if ( !*arg3 ) { Py_INCREF(Py_None); r = Py_None; resultobj = t_output_helper(resultobj,r); } else { r = PyFloat_FromDouble( *arg2 ); resultobj = t_output_helper(resultobj,r); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetScale(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 = (double *) 0 ; int *arg3 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double tmpval2 ; int tmphasval2 ; PyObject * obj0 = 0 ; { /* %typemap(python,in,numinputs=0) (double *val, int*hasval) */ arg2 = &tmpval2; arg3 = &tmphasval2; } if (!PyArg_ParseTuple(args,(char *)"O:Band_GetScale",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetScale" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_GetScale(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(python,argout) (double *val, int*hasval) */ PyObject *r; if ( !*arg3 ) { Py_INCREF(Py_None); r = Py_None; resultobj = t_output_helper(resultobj,r); } else { r = PyFloat_FromDouble( *arg2 ); resultobj = t_output_helper(resultobj,r); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetOffset(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetOffset",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetOffset" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetOffset" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetOffset(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetScale(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetScale",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetScale" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetScale" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetScale(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetStatistics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; int arg3 ; double *arg4 = (double *) 0 ; double *arg5 = (double *) 0 ; double *arg6 = (double *) 0 ; double *arg7 = (double *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; double temp4 ; int res4 = SWIG_TMPOBJ ; double temp5 ; int res5 = SWIG_TMPOBJ ; double temp6 ; int res6 = SWIG_TMPOBJ ; double temp7 ; int res7 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; CPLErr result; arg4 = &temp4; arg5 = &temp5; arg6 = &temp6; arg7 = &temp7; if (!PyArg_ParseTuple(args,(char *)"OOO:Band_GetStatistics",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetStatistics" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_GetStatistics" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_GetStatistics" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_GetStatistics(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) IF_ERROR_RETURN_NONE */ } if (SWIG_IsTmpObj(res4)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg4))); } else { int new_flags = SWIG_IsNewObj(res4) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg4), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res5)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg5))); } else { int new_flags = SWIG_IsNewObj(res5) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res6)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg6))); } else { int new_flags = SWIG_IsNewObj(res6) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg6), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res7)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg7))); } else { int new_flags = SWIG_IsNewObj(res7) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg7), SWIGTYPE_p_double, new_flags)); } { /* %typemap(ret) CPLErr */ if ( bUseExceptions == 0 ) { /* We're not using exceptions. And no error has occurred */ if ( resultobj == 0 ) { /* No other return values set so return ErrorCode */ resultobj = PyInt_FromLong(result); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_ComputeStatistics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; bool arg2 ; double *arg3 = (double *) NULL ; double *arg4 = (double *) NULL ; double *arg5 = (double *) NULL ; double *arg6 = (double *) NULL ; GDALProgressFunc arg7 = (GDALProgressFunc) NULL ; void *arg8 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; bool val2 ; int ecode2 = 0 ; double temp3 ; int res3 = SWIG_TMPOBJ ; double temp4 ; int res4 = SWIG_TMPOBJ ; double temp5 ; int res5 = SWIG_TMPOBJ ; double temp6 ; int res6 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; CPLErr result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg8 = psProgressInfo; arg3 = &temp3; arg4 = &temp4; arg5 = &temp5; arg6 = &temp6; if (!PyArg_ParseTuple(args,(char *)"OO|OO:Band_ComputeStatistics",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_ComputeStatistics" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_bool(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_ComputeStatistics" "', argument " "2"" of type '" "bool""'"); } arg2 = static_cast< bool >(val2); if (obj2) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj2 && obj2 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj2, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg7 = GDALTermProgress; } else { if (!PyCallable_Check(obj2)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj2; arg7 = PyProgressProxy; } } } } if (obj3) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj3 ; } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_ComputeStatistics(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) IF_ERROR_RETURN_NONE */ } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res4)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg4))); } else { int new_flags = SWIG_IsNewObj(res4) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg4), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res5)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg5))); } else { int new_flags = SWIG_IsNewObj(res5) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res6)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg6))); } else { int new_flags = SWIG_IsNewObj(res6) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg6), SWIGTYPE_p_double, new_flags)); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_Band_SetStatistics(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; double arg3 ; double arg4 ; double arg5 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; double val4 ; int ecode4 = 0 ; double val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OOOOO:Band_SetStatistics",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetStatistics" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetStatistics" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_SetStatistics" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); ecode4 = SWIG_AsVal_double(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Band_SetStatistics" "', argument " "4"" of type '" "double""'"); } arg4 = static_cast< double >(val4); ecode5 = SWIG_AsVal_double(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Band_SetStatistics" "', argument " "5"" of type '" "double""'"); } arg5 = static_cast< double >(val5); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetStatistics(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetOverviewCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetOverviewCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetOverviewCount" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_GetOverviewCount(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetOverview(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALRasterBandShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:Band_GetOverview",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetOverview" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_GetOverview" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRasterBandShadow *)GDALRasterBandShadow_GetOverview(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_Checksum(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 = (int) 0 ; int arg3 = (int) 0 ; int *arg4 = (int *) 0 ; int *arg5 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int val5 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xoff",(char *) "yoff",(char *) "xsize",(char *) "ysize", NULL }; int result; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOO:Band_Checksum",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_Checksum" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); if (obj1) { ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_Checksum" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); } if (obj2) { ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_Checksum" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); } if (obj3) { { /* %typemap(in) (int *optional_##int) */ if ( obj3 == Py_None ) { arg4 = 0; } else if ( PyArg_Parse( obj3,"i" ,&val4 ) ) { arg4 = (int *) &val4; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj4) { { /* %typemap(in) (int *optional_##int) */ if ( obj4 == Py_None ) { arg5 = 0; } else if ( PyArg_Parse( obj4,"i" ,&val5 ) ) { arg5 = (int *) &val5; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_Checksum(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_ComputeRasterMinMax(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 ; int arg3 = (int) 0 ; void *argp1 = 0 ; int res1 = 0 ; double argout2[2] ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { /* %typemap(in,numinputs=0) (double argout2[ANY]) */ arg2 = argout2; } if (!PyArg_ParseTuple(args,(char *)"O|O:Band_ComputeRasterMinMax",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_ComputeRasterMinMax" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); if (obj1) { ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_ComputeRasterMinMax" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); } { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_ComputeRasterMinMax(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(argout) (double argout[ANY]) */ PyObject *out = CreateTupleFromDoubleArray( arg2, 2 ); resultobj = t_output_helper(resultobj,out); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_ComputeBandStats(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 ; int arg3 = (int) 1 ; void *argp1 = 0 ; int res1 = 0 ; double argout2[2] ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; { /* %typemap(in,numinputs=0) (double argout2[ANY]) */ arg2 = argout2; } if (!PyArg_ParseTuple(args,(char *)"O|O:Band_ComputeBandStats",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_ComputeBandStats" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); if (obj1) { ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_ComputeBandStats" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); } { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_ComputeBandStats(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(argout) (double argout[ANY]) */ PyObject *out = CreateTupleFromDoubleArray( arg2, 2 ); resultobj = t_output_helper(resultobj,out); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_Fill(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; double arg3 = (double) 0.0 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO|O:Band_Fill",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_Fill" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_Fill" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); if (obj2) { ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_Fill" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_Fill(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_WriteRaster(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; int arg3 ; int arg4 ; int arg5 ; GIntBig arg6 ; char *arg7 = (char *) 0 ; int *arg8 = (int *) 0 ; int *arg9 = (int *) 0 ; int *arg10 = (int *) 0 ; int *arg11 = (int *) 0 ; int *arg12 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int alloc6 = 0 ; int val8 ; int val9 ; int val10 ; int val11 ; int val12 ; 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 ; PyObject * obj10 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xoff",(char *) "yoff",(char *) "xsize",(char *) "ysize",(char *) "buf_len",(char *) "buf_xsize",(char *) "buf_ysize",(char *) "buf_type",(char *) "buf_pixel_space",(char *) "buf_line_space", NULL }; CPLErr result; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOO|OOOOO:Band_WriteRaster",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_WriteRaster" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_WriteRaster" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_WriteRaster" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Band_WriteRaster" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Band_WriteRaster" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); { /* %typemap(in,numinputs=1) (GIntBig nLen, char *pBuf ) */ #if PY_VERSION_HEX>=0x03000000 if (PyUnicode_Check(obj5)) { size_t safeLen = 0; int ret = SWIG_AsCharPtrAndSize(obj5, (char**) &arg7, &safeLen, &alloc6); if (!SWIG_IsOK(ret)) { SWIG_exception( SWIG_RuntimeError, "invalid Unicode string" ); } if (safeLen) safeLen--; arg6 = (GIntBig) safeLen; } else if (PyBytes_Check(obj5)) { Py_ssize_t safeLen = 0; PyBytes_AsStringAndSize(obj5, (char**) &arg7, &safeLen); arg6 = (GIntBig) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a unicode string or a bytes"); SWIG_fail; } #else if (PyString_Check(obj5)) { Py_ssize_t safeLen = 0; PyString_AsStringAndSize(obj5, (char**) &arg7, &safeLen); arg6 = (GIntBig) safeLen; } else { PyErr_SetString(PyExc_TypeError, "not a string"); SWIG_fail; } #endif } if (obj6) { { /* %typemap(in) (int *optional_##int) */ if ( obj6 == Py_None ) { arg8 = 0; } else if ( PyArg_Parse( obj6,"i" ,&val8 ) ) { arg8 = (int *) &val8; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj7) { { /* %typemap(in) (int *optional_##int) */ if ( obj7 == Py_None ) { arg9 = 0; } else if ( PyArg_Parse( obj7,"i" ,&val9 ) ) { arg9 = (int *) &val9; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj8) { { /* %typemap(in) (int *optional_##int) */ if ( obj8 == Py_None ) { arg10 = 0; } else if ( PyArg_Parse( obj8,"i" ,&val10 ) ) { arg10 = (int *) &val10; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj9) { { /* %typemap(in) (int *optional_##int) */ if ( obj9 == Py_None ) { arg11 = 0; } else if ( PyArg_Parse( obj9,"i" ,&val11 ) ) { arg11 = (int *) &val11; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj10) { { /* %typemap(in) (int *optional_##int) */ if ( obj10 == Py_None ) { arg12 = 0; } else if ( PyArg_Parse( obj10,"i" ,&val12 ) ) { arg12 = (int *) &val12; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_WriteRaster(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (GIntBig *nLen, char *pBuf ) */ if( alloc6 == SWIG_NEWOBJ ) { delete[] arg7; } } return resultobj; fail: { /* %typemap(freearg) (GIntBig *nLen, char *pBuf ) */ if( alloc6 == SWIG_NEWOBJ ) { delete[] arg7; } } return NULL; } SWIGINTERN PyObject *_wrap_Band_FlushCache(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_FlushCache",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_FlushCache" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterBandShadow_FlushCache(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetRasterColorTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALColorTableShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetRasterColorTable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetRasterColorTable" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorTableShadow *)GDALRasterBandShadow_GetRasterColorTable(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetColorTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALColorTableShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetColorTable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetColorTable" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorTableShadow *)GDALRasterBandShadow_GetColorTable(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetRasterColorTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALColorTableShadow *arg2 = (GDALColorTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetRasterColorTable",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetRasterColorTable" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Band_SetRasterColorTable" "', argument " "2"" of type '" "GDALColorTableShadow *""'"); } arg2 = reinterpret_cast< GDALColorTableShadow * >(argp2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_SetRasterColorTable(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetColorTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALColorTableShadow *arg2 = (GDALColorTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetColorTable",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetColorTable" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Band_SetColorTable" "', argument " "2"" of type '" "GDALColorTableShadow *""'"); } arg2 = reinterpret_cast< GDALColorTableShadow * >(argp2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_SetColorTable(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetDefaultRAT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALRasterAttributeTableShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetDefaultRAT",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetDefaultRAT" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRasterAttributeTableShadow *)GDALRasterBandShadow_GetDefaultRAT(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetDefaultRAT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterAttributeTableShadow *arg2 = (GDALRasterAttributeTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetDefaultRAT",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetDefaultRAT" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Band_SetDefaultRAT" "', argument " "2"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg2 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_SetDefaultRAT(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetMaskBand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALRasterBandShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetMaskBand",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetMaskBand" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRasterBandShadow *)GDALRasterBandShadow_GetMaskBand(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetMaskFlags(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetMaskFlags",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetMaskFlags" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterBandShadow_GetMaskFlags(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_CreateMaskBand(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_CreateMaskBand",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_CreateMaskBand" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_CreateMaskBand" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_CreateMaskBand(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetHistogram(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 = (double) -0.5 ; double arg3 = (double) 255.5 ; int arg4 = (int) 256 ; int *arg5 = (int *) NULL ; int arg6 = (int) 0 ; int arg7 = (int) 1 ; GDALProgressFunc arg8 = (GDALProgressFunc) NULL ; void *arg9 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; int val6 ; int ecode6 = 0 ; int val7 ; int ecode7 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; char * kwnames[] = { (char *) "self",(char *) "min",(char *) "max",(char *) "buckets",(char *) "include_out_of_range",(char *) "approx_ok",(char *) "callback",(char *) "callback_data", NULL }; CPLErr result; { /* %typemap(in) int buckets, int* panHistogram -> list */ arg5 = (int *) VSICalloc(sizeof(int),arg4); } /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg9 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:Band_GetHistogram",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetHistogram" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); if (obj1) { ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_GetHistogram" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); } if (obj2) { ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_GetHistogram" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); } if (obj3) { { /* %typemap(in) int buckets, int* panHistogram -> list */ int requested_buckets = 0; SWIG_AsVal_int(obj3, &requested_buckets); if( requested_buckets != arg4 ) { arg4 = requested_buckets; if (requested_buckets <= 0 || requested_buckets > (int)(INT_MAX / sizeof(int))) { PyErr_SetString( PyExc_RuntimeError, "Bad value for buckets" ); SWIG_fail; } arg5 = (int *) VSIRealloc(arg5, sizeof(int) * requested_buckets); } if (arg5 == NULL) { PyErr_SetString( PyExc_RuntimeError, "Cannot allocate buckets" ); SWIG_fail; } } } if (obj4) { ecode6 = SWIG_AsVal_int(obj4, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Band_GetHistogram" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); } if (obj5) { ecode7 = SWIG_AsVal_int(obj5, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "Band_GetHistogram" "', argument " "7"" of type '" "int""'"); } arg7 = static_cast< int >(val7); } if (obj6) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj6 && obj6 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj6, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg8 = GDALTermProgress; } else { if (!PyCallable_Check(obj6)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj6; arg8 = PyProgressProxy; } } } } if (obj7) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj7 ; } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_GetHistogram(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(out) int buckets, int* panHistogram -> list */ int *integerarray = arg5; if ( integerarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { resultobj = PyList_New( arg4 ); for ( int i = 0; i < arg4; ++i ) { PyObject *o = PyInt_FromLong( integerarray[i] ); PyList_SetItem(resultobj, i, o ); } } } { /* %typemap(freearg) (int buckets, int* panHistogram)*/ if ( arg5 ) { VSIFree( arg5 ); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) (int buckets, int* panHistogram)*/ if ( arg5 ) { VSIFree( arg5 ); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_Band_GetDefaultHistogram(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double *arg2 = (double *) NULL ; double *arg3 = (double *) NULL ; int *arg4 = (int *) NULL ; int **arg5 = (int **) NULL ; int arg6 = (int) 1 ; GDALProgressFunc arg7 = (GDALProgressFunc) NULL ; void *arg8 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; int val6 ; int ecode6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; char * kwnames[] = { (char *) "self",(char *) "min_ret",(char *) "max_ret",(char *) "buckets_ret",(char *) "ppanHistogram",(char *) "force",(char *) "callback",(char *) "callback_data", NULL }; CPLErr result; double min_val, max_val; int buckets_val; int *panHistogram; arg2 = &min_val; arg3 = &max_val; arg4 = &buckets_val; arg5 = &panHistogram; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg8 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOO:Band_GetDefaultHistogram",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetDefaultHistogram" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); if (obj1) { res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Band_GetDefaultHistogram" "', argument " "2"" of type '" "double *""'"); } arg2 = reinterpret_cast< double * >(argp2); } if (obj2) { res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_double, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Band_GetDefaultHistogram" "', argument " "3"" of type '" "double *""'"); } arg3 = reinterpret_cast< double * >(argp3); } if (obj3) { res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "Band_GetDefaultHistogram" "', argument " "4"" of type '" "int *""'"); } arg4 = reinterpret_cast< int * >(argp4); } if (obj4) { res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_p_int, 0 | 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "Band_GetDefaultHistogram" "', argument " "5"" of type '" "int **""'"); } arg5 = reinterpret_cast< int ** >(argp5); } if (obj5) { ecode6 = SWIG_AsVal_int(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Band_GetDefaultHistogram" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); } if (obj6) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj6 && obj6 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj6, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg7 = GDALTermProgress; } else { if (!PyCallable_Check(obj6)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj6; arg7 = PyProgressProxy; } } } } if (obj7) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj7 ; } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_GetDefaultHistogram(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { int i; PyObject *psList = NULL; Py_XDECREF(resultobj); if (panHistogram) { psList = PyList_New(buckets_val); for( i = 0; i < buckets_val; i++ ) PyList_SetItem(psList, i, Py_BuildValue("i", panHistogram[i] )); CPLFree( panHistogram ); resultobj = Py_BuildValue( "(ddiO)", min_val, max_val, buckets_val, psList ); Py_XDECREF(psList); } else { resultobj = Py_None; Py_INCREF(resultobj); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_Band_SetDefaultHistogram(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; double arg3 ; int arg4 ; int *arg5 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OOOO:Band_SetDefaultHistogram",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetDefaultHistogram" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_SetDefaultHistogram" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_SetDefaultHistogram" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj3) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg4 = PySequence_Size(obj3); arg5 = (int*) malloc(arg4*sizeof(int)); for( int i = 0; i<arg4; i++ ) { PyObject *o = PySequence_GetItem(obj3,i); if ( !PyArg_Parse(o,"i",&arg5[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetDefaultHistogram(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (int nList, int* pList) */ if (arg5) { free((void*) arg5); } } return resultobj; fail: { /* %typemap(freearg) (int nList, int* pList) */ if (arg5) { free((void*) arg5); } } return NULL; } SWIGINTERN PyObject *_wrap_Band_HasArbitraryOverviews(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; bool result; if (!PyArg_ParseTuple(args,(char *)"O:Band_HasArbitraryOverviews",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_HasArbitraryOverviews" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (bool)GDALRasterBandShadow_HasArbitraryOverviews(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_bool(static_cast< bool >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_GetCategoryNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:Band_GetCategoryNames",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetCategoryNames" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GDALRasterBandShadow_GetCategoryNames(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **options -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_SetCategoryNames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; char **arg2 = (char **) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; CPLErr result; if (!PyArg_ParseTuple(args,(char *)"OO:Band_SetCategoryNames",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_SetCategoryNames" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj1) || PyUnicode_Check(obj1) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj1) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj1); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj1,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg2 = CSLAddString( arg2, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg2 = CSLAddString( arg2, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg2 = CSLAddString( arg2, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_SetCategoryNames(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg2 ); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg2 ); } return NULL; } SWIGINTERN PyObject *_wrap_Band_GetVirtualMem(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRWFlag arg2 ; int arg3 ; int arg4 ; int arg5 ; int arg6 ; int arg7 ; int arg8 ; GDALDataType arg9 ; size_t arg10 ; size_t arg11 ; char **arg12 = (char **) NULL ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int val6 ; int ecode6 = 0 ; int val7 ; int ecode7 = 0 ; int val8 ; int ecode8 = 0 ; int val9 ; int ecode9 = 0 ; size_t val10 ; int ecode10 = 0 ; size_t val11 ; int ecode11 = 0 ; 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 ; PyObject * obj10 = 0 ; PyObject * obj11 = 0 ; char * kwnames[] = { (char *) "self",(char *) "eRWFlag",(char *) "nXOff",(char *) "nYOff",(char *) "nXSize",(char *) "nYSize",(char *) "nBufXSize",(char *) "nBufYSize",(char *) "eBufType",(char *) "nCacheSize",(char *) "nPageSizeHint",(char *) "options", NULL }; CPLVirtualMemShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOOOOOOO|O:Band_GetVirtualMem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetVirtualMem" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_GetVirtualMem" "', argument " "2"" of type '" "GDALRWFlag""'"); } arg2 = static_cast< GDALRWFlag >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_GetVirtualMem" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Band_GetVirtualMem" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Band_GetVirtualMem" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); ecode6 = SWIG_AsVal_int(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Band_GetVirtualMem" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); ecode7 = SWIG_AsVal_int(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "Band_GetVirtualMem" "', argument " "7"" of type '" "int""'"); } arg7 = static_cast< int >(val7); ecode8 = SWIG_AsVal_int(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "Band_GetVirtualMem" "', argument " "8"" of type '" "int""'"); } arg8 = static_cast< int >(val8); ecode9 = SWIG_AsVal_int(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "Band_GetVirtualMem" "', argument " "9"" of type '" "GDALDataType""'"); } arg9 = static_cast< GDALDataType >(val9); ecode10 = SWIG_AsVal_size_t(obj9, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "Band_GetVirtualMem" "', argument " "10"" of type '" "size_t""'"); } arg10 = static_cast< size_t >(val10); ecode11 = SWIG_AsVal_size_t(obj10, &val11); if (!SWIG_IsOK(ecode11)) { SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "Band_GetVirtualMem" "', argument " "11"" of type '" "size_t""'"); } arg11 = static_cast< size_t >(val11); if (obj11) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj11) || PyUnicode_Check(obj11) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj11) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj11); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj11,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg12 = CSLAddString( arg12, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg12 = CSLAddString( arg12, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg12 = CSLAddString( arg12, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLVirtualMemShadow *)GDALRasterBandShadow_GetVirtualMem(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CPLVirtualMemShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) char **options */ CSLDestroy( arg12 ); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg12 ); } return NULL; } SWIGINTERN PyObject *_wrap_Band_GetVirtualMemAuto(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRWFlag arg2 ; char **arg3 = (char **) NULL ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char * kwnames[] = { (char *) "self",(char *) "eRWFlag",(char *) "options", NULL }; CPLVirtualMemShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:Band_GetVirtualMemAuto",kwnames,&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetVirtualMemAuto" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_GetVirtualMemAuto" "', argument " "2"" of type '" "GDALRWFlag""'"); } arg2 = static_cast< GDALRWFlag >(val2); if (obj2) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj2) || PyUnicode_Check(obj2) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj2) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj2,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg3 = CSLAddString( arg3, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg3 = CSLAddString( arg3, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg3 = CSLAddString( arg3, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLVirtualMemShadow *)GDALRasterBandShadow_GetVirtualMemAuto(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CPLVirtualMemShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } return NULL; } SWIGINTERN PyObject *_wrap_Band_GetTiledVirtualMem(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRWFlag arg2 ; int arg3 ; int arg4 ; int arg5 ; int arg6 ; int arg7 ; int arg8 ; GDALDataType arg9 ; size_t arg10 ; char **arg11 = (char **) NULL ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; int val6 ; int ecode6 = 0 ; int val7 ; int ecode7 = 0 ; int val8 ; int ecode8 = 0 ; int val9 ; int ecode9 = 0 ; size_t val10 ; int ecode10 = 0 ; 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 ; PyObject * obj10 = 0 ; char * kwnames[] = { (char *) "self",(char *) "eRWFlag",(char *) "nXOff",(char *) "nYOff",(char *) "nXSize",(char *) "nYSize",(char *) "nTileXSize",(char *) "nTileYSize",(char *) "eBufType",(char *) "nCacheSize",(char *) "options", NULL }; CPLVirtualMemShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOOOOOO|O:Band_GetTiledVirtualMem",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_GetTiledVirtualMem" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_GetTiledVirtualMem" "', argument " "2"" of type '" "GDALRWFlag""'"); } arg2 = static_cast< GDALRWFlag >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_GetTiledVirtualMem" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Band_GetTiledVirtualMem" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Band_GetTiledVirtualMem" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); ecode6 = SWIG_AsVal_int(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Band_GetTiledVirtualMem" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); ecode7 = SWIG_AsVal_int(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "Band_GetTiledVirtualMem" "', argument " "7"" of type '" "int""'"); } arg7 = static_cast< int >(val7); ecode8 = SWIG_AsVal_int(obj7, &val8); if (!SWIG_IsOK(ecode8)) { SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "Band_GetTiledVirtualMem" "', argument " "8"" of type '" "int""'"); } arg8 = static_cast< int >(val8); ecode9 = SWIG_AsVal_int(obj8, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "Band_GetTiledVirtualMem" "', argument " "9"" of type '" "GDALDataType""'"); } arg9 = static_cast< GDALDataType >(val9); ecode10 = SWIG_AsVal_size_t(obj9, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "Band_GetTiledVirtualMem" "', argument " "10"" of type '" "size_t""'"); } arg10 = static_cast< size_t >(val10); if (obj10) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj10) || PyUnicode_Check(obj10) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj10) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj10); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj10,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg11 = CSLAddString( arg11, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg11 = CSLAddString( arg11, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg11 = CSLAddString( arg11, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLVirtualMemShadow *)GDALRasterBandShadow_GetTiledVirtualMem(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CPLVirtualMemShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) char **options */ CSLDestroy( arg11 ); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg11 ); } return NULL; } SWIGINTERN PyObject *_wrap_Band_ReadRaster1(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; int arg3 ; int arg4 ; int arg5 ; void **arg6 = (void **) 0 ; int *arg7 = (int *) 0 ; int *arg8 = (int *) 0 ; int *arg9 = (int *) 0 ; int *arg10 = (int *) 0 ; int *arg11 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; void *pyObject6 = NULL ; int val7 ; int val8 ; int val9 ; int val10 ; int val11 ; 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 ; char * kwnames[] = { (char *) "self",(char *) "xoff",(char *) "yoff",(char *) "xsize",(char *) "ysize",(char *) "buf_xsize",(char *) "buf_ysize",(char *) "buf_type",(char *) "buf_pixel_space",(char *) "buf_line_space", NULL }; CPLErr result; { /* %typemap(in,numinputs=0) ( void **outPythonObject ) ( void *pyObject6 = NULL ) */ arg6 = &pyObject6; } if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|OOOOO:Band_ReadRaster1",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_ReadRaster1" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_ReadRaster1" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_ReadRaster1" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Band_ReadRaster1" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Band_ReadRaster1" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); if (obj5) { { /* %typemap(in) (int *optional_##int) */ if ( obj5 == Py_None ) { arg7 = 0; } else if ( PyArg_Parse( obj5,"i" ,&val7 ) ) { arg7 = (int *) &val7; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj6) { { /* %typemap(in) (int *optional_##int) */ if ( obj6 == Py_None ) { arg8 = 0; } else if ( PyArg_Parse( obj6,"i" ,&val8 ) ) { arg8 = (int *) &val8; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj7) { { /* %typemap(in) (int *optional_##int) */ if ( obj7 == Py_None ) { arg9 = 0; } else if ( PyArg_Parse( obj7,"i" ,&val9 ) ) { arg9 = (int *) &val9; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj8) { { /* %typemap(in) (int *optional_##int) */ if ( obj8 == Py_None ) { arg10 = 0; } else if ( PyArg_Parse( obj8,"i" ,&val10 ) ) { arg10 = (int *) &val10; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } if (obj9) { { /* %typemap(in) (int *optional_##int) */ if ( obj9 == Py_None ) { arg11 = 0; } else if ( PyArg_Parse( obj9,"i" ,&val11 ) ) { arg11 = (int *) &val11; } else { PyErr_SetString( PyExc_TypeError, "Invalid Parameter" ); SWIG_fail; } } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_ReadRaster1(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) ( void **outPythonObject ) */ Py_XDECREF(resultobj); if (*arg6) { resultobj = (PyObject*)*arg6; } else { resultobj = Py_None; Py_INCREF(resultobj); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Band_ReadBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; int arg3 ; void **arg4 = (void **) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; void *pyObject4 = NULL ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xoff",(char *) "yoff", NULL }; CPLErr result; { /* %typemap(in,numinputs=0) ( void **outPythonObject ) ( void *pyObject4 = NULL ) */ arg4 = &pyObject4; } if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO:Band_ReadBlock",kwnames,&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Band_ReadBlock" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Band_ReadBlock" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Band_ReadBlock" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)GDALRasterBandShadow_ReadBlock(arg1,arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) ( void **outPythonObject ) */ Py_XDECREF(resultobj); if (*arg4) { resultobj = (PyObject*)*arg4; } else { resultobj = Py_None; Py_INCREF(resultobj); } } return resultobj; fail: return NULL; } SWIGINTERN PyObject *Band_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALRasterBandShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_new_ColorTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALPaletteInterp arg1 = (GDALPaletteInterp) GPI_RGB ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; char * kwnames[] = { (char *) "palette", NULL }; GDALColorTableShadow *result = 0 ; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|O:new_ColorTable",kwnames,&obj0)) SWIG_fail; if (obj0) { ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_ColorTable" "', argument " "1"" of type '" "GDALPaletteInterp""'"); } arg1 = static_cast< GDALPaletteInterp >(val1); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorTableShadow *)new_GDALColorTableShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALColorTableShadow, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_ColorTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_ColorTable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_ColorTable" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_GDALColorTableShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_Clone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALColorTableShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:ColorTable_Clone",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_Clone" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorTableShadow *)GDALColorTableShadow_Clone(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALColorTableShadow, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_GetPaletteInterpretation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALPaletteInterp result; if (!PyArg_ParseTuple(args,(char *)"O:ColorTable_GetPaletteInterpretation",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_GetPaletteInterpretation" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALPaletteInterp)GDALColorTableShadow_GetPaletteInterpretation(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_GetCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:ColorTable_GetCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_GetCount" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALColorTableShadow_GetColorEntryCount(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_GetColorEntry(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALColorEntry *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:ColorTable_GetColorEntry",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_GetColorEntry" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorTable_GetColorEntry" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALColorEntry *)GDALColorTableShadow_GetColorEntry(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) GDALColorEntry* */ if ( result != NULL ) resultobj = Py_BuildValue( "(hhhh)", (*result).c1,(*result).c2,(*result).c3,(*result).c4); else resultobj = NULL; } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_GetColorEntryAsRGB(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; int arg2 ; GDALColorEntry *arg3 = (GDALColorEntry *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; GDALColorEntry ce3 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:ColorTable_GetColorEntryAsRGB",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_GetColorEntryAsRGB" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorTable_GetColorEntryAsRGB" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { /* %typemap(in) GDALColorEntry* */ ce3.c4 = 255; if (! PySequence_Check(obj2) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj2,"hhh|h", &ce3.c1, &ce3.c2, &ce3.c3, &ce3.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg3 = &ce3; } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALColorTableShadow_GetColorEntryAsRGB(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_SetColorEntry(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; int arg2 ; GDALColorEntry *arg3 = (GDALColorEntry *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; GDALColorEntry ce3 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:ColorTable_SetColorEntry",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_SetColorEntry" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorTable_SetColorEntry" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { /* %typemap(in) GDALColorEntry* */ ce3.c4 = 255; if (! PySequence_Check(obj2) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj2,"hhh|h", &ce3.c1, &ce3.c2, &ce3.c3, &ce3.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg3 = &ce3; } { if ( bUseExceptions ) { CPLErrorReset(); } GDALColorTableShadow_SetColorEntry(arg1,arg2,(GDALColorEntry const *)arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ColorTable_CreateColorRamp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorTableShadow *arg1 = (GDALColorTableShadow *) 0 ; int arg2 ; GDALColorEntry *arg3 = (GDALColorEntry *) 0 ; int arg4 ; GDALColorEntry *arg5 = (GDALColorEntry *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; GDALColorEntry ce3 ; int val4 ; int ecode4 = 0 ; GDALColorEntry ce5 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOOO:ColorTable_CreateColorRamp",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ColorTable_CreateColorRamp" "', argument " "1"" of type '" "GDALColorTableShadow *""'"); } arg1 = reinterpret_cast< GDALColorTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ColorTable_CreateColorRamp" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { /* %typemap(in) GDALColorEntry* */ ce3.c4 = 255; if (! PySequence_Check(obj2) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj2,"hhh|h", &ce3.c1, &ce3.c2, &ce3.c3, &ce3.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg3 = &ce3; } ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "ColorTable_CreateColorRamp" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); { /* %typemap(in) GDALColorEntry* */ ce5.c4 = 255; if (! PySequence_Check(obj4) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int size = PySequence_Size(obj4); if ( size > 4 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too long"); SWIG_fail; } if ( size < 3 ) { PyErr_SetString(PyExc_TypeError, "ColorEntry sequence too short"); SWIG_fail; } if ( !PyArg_ParseTuple( obj4,"hhh|h", &ce5.c1, &ce5.c2, &ce5.c3, &ce5.c4 ) ) { PyErr_SetString(PyExc_TypeError, "Invalid values in ColorEntry sequence "); SWIG_fail; } arg5 = &ce5; } { if ( bUseExceptions ) { CPLErrorReset(); } GDALColorTableShadow_CreateColorRamp(arg1,arg2,(GDALColorEntry const *)arg3,arg4,(GDALColorEntry const *)arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *ColorTable_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALColorTableShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_new_RasterAttributeTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)":new_RasterAttributeTable")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRasterAttributeTableShadow *)new_GDALRasterAttributeTableShadow(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALRasterAttributeTableShadow, SWIG_POINTER_NEW | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_delete_RasterAttributeTable(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_RasterAttributeTable",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_RasterAttributeTable" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_GDALRasterAttributeTableShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_Clone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; GDALRasterAttributeTableShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:RasterAttributeTable_Clone",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_Clone" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRasterAttributeTableShadow *)GDALRasterAttributeTableShadow_Clone(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALRasterAttributeTableShadow, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetColumnCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:RasterAttributeTable_GetColumnCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetColumnCount" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_GetColumnCount(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetNameOfCol(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:RasterAttributeTable_GetNameOfCol",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetNameOfCol" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetNameOfCol" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALRasterAttributeTableShadow_GetNameOfCol(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetUsageOfCol(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALRATFieldUsage result; if (!PyArg_ParseTuple(args,(char *)"OO:RasterAttributeTable_GetUsageOfCol",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetUsageOfCol" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetUsageOfCol" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRATFieldUsage)GDALRasterAttributeTableShadow_GetUsageOfCol(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetTypeOfCol(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALRATFieldType result; if (!PyArg_ParseTuple(args,(char *)"OO:RasterAttributeTable_GetTypeOfCol",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetTypeOfCol" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetTypeOfCol" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALRATFieldType)GDALRasterAttributeTableShadow_GetTypeOfCol(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetColOfUsage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; GDALRATFieldUsage arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:RasterAttributeTable_GetColOfUsage",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetColOfUsage" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetColOfUsage" "', argument " "2"" of type '" "GDALRATFieldUsage""'"); } arg2 = static_cast< GDALRATFieldUsage >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_GetColOfUsage(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetRowCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:RasterAttributeTable_GetRowCount",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetRowCount" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_GetRowCount(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetValueAsString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:RasterAttributeTable_GetValueAsString",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetValueAsString" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetValueAsString" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_GetValueAsString" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALRasterAttributeTableShadow_GetValueAsString(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetValueAsInt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:RasterAttributeTable_GetValueAsInt",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetValueAsInt" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetValueAsInt" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_GetValueAsInt" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_GetValueAsInt(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetValueAsDouble(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; int arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"OOO:RasterAttributeTable_GetValueAsDouble",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetValueAsDouble" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetValueAsDouble" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_GetValueAsDouble" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDALRasterAttributeTableShadow_GetValueAsDouble(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_SetValueAsString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; int arg3 ; char *arg4 = (char *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject *str4 = 0 ; int bToFree4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:RasterAttributeTable_SetValueAsString",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_SetValueAsString" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_SetValueAsString" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_SetValueAsString" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); { /* %typemap(in) (tostring argin) */ str4 = PyObject_Str( obj3 ); if ( str4 == 0 ) { PyErr_SetString( PyExc_RuntimeError, "Unable to format argument as string"); SWIG_fail; } arg4 = GDALPythonObjectToCStr(str4, &bToFree4); } { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterAttributeTableShadow_SetValueAsString(arg1,arg2,arg3,(char const *)arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); { /* %typemap(freearg) (tostring argin) */ if ( str4 != NULL) { Py_DECREF(str4); } GDALPythonFreeCStr(arg4, bToFree4); } return resultobj; fail: { /* %typemap(freearg) (tostring argin) */ if ( str4 != NULL) { Py_DECREF(str4); } GDALPythonFreeCStr(arg4, bToFree4); } return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_SetValueAsInt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; int arg3 ; int arg4 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:RasterAttributeTable_SetValueAsInt",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_SetValueAsInt" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_SetValueAsInt" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_SetValueAsInt" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "RasterAttributeTable_SetValueAsInt" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterAttributeTableShadow_SetValueAsInt(arg1,arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_SetValueAsDouble(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; int arg3 ; double arg4 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; int val3 ; int ecode3 = 0 ; double val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOOO:RasterAttributeTable_SetValueAsDouble",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_SetValueAsDouble" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_SetValueAsDouble" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_SetValueAsDouble" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_double(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "RasterAttributeTable_SetValueAsDouble" "', argument " "4"" of type '" "double""'"); } arg4 = static_cast< double >(val4); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterAttributeTableShadow_SetValueAsDouble(arg1,arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_SetRowCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; int arg2 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO:RasterAttributeTable_SetRowCount",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_SetRowCount" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_SetRowCount" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } GDALRasterAttributeTableShadow_SetRowCount(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_CreateColumn(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; char *arg2 = (char *) 0 ; GDALRATFieldType arg3 ; GDALRATFieldUsage arg4 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOOO:RasterAttributeTable_CreateColumn",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_CreateColumn" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "RasterAttributeTable_CreateColumn" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_CreateColumn" "', argument " "3"" of type '" "GDALRATFieldType""'"); } arg3 = static_cast< GDALRATFieldType >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "RasterAttributeTable_CreateColumn" "', argument " "4"" of type '" "GDALRATFieldUsage""'"); } arg4 = static_cast< GDALRATFieldUsage >(val4); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_CreateColumn(arg1,(char const *)arg2,arg3,arg4); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetLinearBinning(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; double *arg2 = (double *) 0 ; double *arg3 = (double *) 0 ; void *argp1 = 0 ; int res1 = 0 ; double temp2 ; int res2 = SWIG_TMPOBJ ; double temp3 ; int res3 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; bool result; arg2 = &temp2; arg3 = &temp3; if (!PyArg_ParseTuple(args,(char *)"O:RasterAttributeTable_GetLinearBinning",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetLinearBinning" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (bool)GDALRasterAttributeTableShadow_GetLinearBinning(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_bool(static_cast< bool >(result)); if (SWIG_IsTmpObj(res2)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg2))); } else { int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res3)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg3))); } else { int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_double, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_SetLinearBinning(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; double arg2 ; double arg3 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:RasterAttributeTable_SetLinearBinning",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_SetLinearBinning" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_SetLinearBinning" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "RasterAttributeTable_SetLinearBinning" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_SetLinearBinning(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_GetRowOfValue(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; double arg2 ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OO:RasterAttributeTable_GetRowOfValue",&obj0,&obj1)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_GetRowOfValue" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "RasterAttributeTable_GetRowOfValue" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_GetRowOfValue(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_RasterAttributeTable_ChangesAreWrittenToFile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALRasterAttributeTableShadow *arg1 = (GDALRasterAttributeTableShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:RasterAttributeTable_ChangesAreWrittenToFile",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterAttributeTableShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterAttributeTable_ChangesAreWrittenToFile" "', argument " "1"" of type '" "GDALRasterAttributeTableShadow *""'"); } arg1 = reinterpret_cast< GDALRasterAttributeTableShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALRasterAttributeTableShadow_ChangesAreWrittenToFile(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *RasterAttributeTable_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALRasterAttributeTableShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_TermProgress_nocb(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; double arg1 ; char *arg2 = (char *) NULL ; void *arg3 = (void *) NULL ; double val1 ; int ecode1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char * kwnames[] = { (char *) "dfProgress",(char *) "pszMessage",(char *) "pData", NULL }; int result; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OO:TermProgress_nocb",kwnames,&obj0,&obj1,&obj2)) SWIG_fail; ecode1 = SWIG_AsVal_double(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "TermProgress_nocb" "', argument " "1"" of type '" "double""'"); } arg1 = static_cast< double >(val1); if (obj1) { res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "TermProgress_nocb" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); } if (obj2) { res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "TermProgress_nocb" "', argument " "3"" of type '" "void *""'"); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALTermProgress_nocb(arg1,(char const *)arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_ComputeMedianCutPCT(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg3 = (GDALRasterBandShadow *) 0 ; int arg4 ; GDALColorTableShadow *arg5 = (GDALColorTableShadow *) 0 ; GDALProgressFunc arg6 = (GDALProgressFunc) NULL ; void *arg7 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; int val4 ; int ecode4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "red",(char *) "green",(char *) "blue",(char *) "num_colors",(char *) "colors",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg7 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|OO:ComputeMedianCutPCT",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ComputeMedianCutPCT" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ComputeMedianCutPCT" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "ComputeMedianCutPCT" "', argument " "3"" of type '" "GDALRasterBandShadow *""'"); } arg3 = reinterpret_cast< GDALRasterBandShadow * >(argp3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "ComputeMedianCutPCT" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "ComputeMedianCutPCT" "', argument " "5"" of type '" "GDALColorTableShadow *""'"); } arg5 = reinterpret_cast< GDALColorTableShadow * >(argp5); if (obj5) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj5 && obj5 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj5, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg6 = GDALTermProgress; } else { if (!PyCallable_Check(obj5)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj5; arg6 = PyProgressProxy; } } } } if (obj6) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj6 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg5) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)ComputeMedianCutPCT(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_DitherRGB2PCT(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg3 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg4 = (GDALRasterBandShadow *) 0 ; GDALColorTableShadow *arg5 = (GDALColorTableShadow *) 0 ; GDALProgressFunc arg6 = (GDALProgressFunc) NULL ; void *arg7 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; void *argp5 = 0 ; int res5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "red",(char *) "green",(char *) "blue",(char *) "target",(char *) "colors",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg7 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|OO:DitherRGB2PCT",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "DitherRGB2PCT" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "DitherRGB2PCT" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "DitherRGB2PCT" "', argument " "3"" of type '" "GDALRasterBandShadow *""'"); } arg3 = reinterpret_cast< GDALRasterBandShadow * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "DitherRGB2PCT" "', argument " "4"" of type '" "GDALRasterBandShadow *""'"); } arg4 = reinterpret_cast< GDALRasterBandShadow * >(argp4); res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_GDALColorTableShadow, 0 | 0 ); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "DitherRGB2PCT" "', argument " "5"" of type '" "GDALColorTableShadow *""'"); } arg5 = reinterpret_cast< GDALColorTableShadow * >(argp5); if (obj5) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj5 && obj5 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj5, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg6 = GDALTermProgress; } else { if (!PyCallable_Check(obj5)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj5; arg6 = PyProgressProxy; } } } } if (obj6) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj6 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg4) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg5) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)DitherRGB2PCT(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_ReprojectImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; GDALDatasetShadow *arg2 = (GDALDatasetShadow *) 0 ; char *arg3 = (char *) NULL ; char *arg4 = (char *) NULL ; GDALResampleAlg arg5 = (GDALResampleAlg) GRA_NearestNeighbour ; double arg6 = (double) 0.0 ; double arg7 = (double) 0.0 ; GDALProgressFunc arg8 = (GDALProgressFunc) NULL ; void *arg9 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; int val5 ; int ecode5 = 0 ; double val6 ; int ecode6 = 0 ; double val7 ; int ecode7 = 0 ; 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 ; CPLErr result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg9 = psProgressInfo; if (!PyArg_ParseTuple(args,(char *)"OO|OOOOOOO:ReprojectImage",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ReprojectImage" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ReprojectImage" "', argument " "2"" of type '" "GDALDatasetShadow *""'"); } arg2 = reinterpret_cast< GDALDatasetShadow * >(argp2); if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "ReprojectImage" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } if (obj3) { res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "ReprojectImage" "', argument " "4"" of type '" "char const *""'"); } arg4 = reinterpret_cast< char * >(buf4); } if (obj4) { ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "ReprojectImage" "', argument " "5"" of type '" "GDALResampleAlg""'"); } arg5 = static_cast< GDALResampleAlg >(val5); } if (obj5) { ecode6 = SWIG_AsVal_double(obj5, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "ReprojectImage" "', argument " "6"" of type '" "double""'"); } arg6 = static_cast< double >(val6); } if (obj6) { ecode7 = SWIG_AsVal_double(obj6, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "ReprojectImage" "', argument " "7"" of type '" "double""'"); } arg7 = static_cast< double >(val7); } if (obj7) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj7 && obj7 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj7, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg8 = GDALTermProgress; } else { if (!PyCallable_Check(obj7)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj7; arg8 = PyProgressProxy; } } } } if (obj8) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj8 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLErr)ReprojectImage(arg1,arg2,(char const *)arg3,(char const *)arg4,arg5,arg6,arg7,arg8,arg9); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; if (alloc4 == SWIG_NEWOBJ) delete[] buf4; { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_ComputeProximity(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; char **arg3 = (char **) NULL ; GDALProgressFunc arg4 = (GDALProgressFunc) NULL ; void *arg5 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; char * kwnames[] = { (char *) "srcBand",(char *) "proximityBand",(char *) "options",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg5 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOO:ComputeProximity",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ComputeProximity" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "ComputeProximity" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); if (obj2) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj2) || PyUnicode_Check(obj2) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj2) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj2,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg3 = CSLAddString( arg3, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg3 = CSLAddString( arg3, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg3 = CSLAddString( arg3, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } if (obj3) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj3 && obj3 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj3, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg4 = GDALTermProgress; } else { if (!PyCallable_Check(obj3)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj3; arg4 = PyProgressProxy; } } } } if (obj4) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj4 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)ComputeProximity(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_RasterizeLayer(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; int arg2 ; int *arg3 = (int *) 0 ; OGRLayerShadow *arg4 = (OGRLayerShadow *) 0 ; void *arg5 = (void *) NULL ; void *arg6 = (void *) NULL ; int arg7 = (int) 0 ; double *arg8 = (double *) NULL ; char **arg9 = (char **) NULL ; GDALProgressFunc arg10 = (GDALProgressFunc) NULL ; void *arg11 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp4 = 0 ; int res4 = 0 ; int res5 ; int res6 ; 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 ; char * kwnames[] = { (char *) "dataset",(char *) "bands",(char *) "layer",(char *) "pfnTransformer",(char *) "pTransformArg",(char *) "burn_values",(char *) "options",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg11 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OOOOOO:RasterizeLayer",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RasterizeLayer" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); { /* %typemap(in,numinputs=1) (int nList, int* pList)*/ /* check if is List */ if ( !PySequence_Check(obj1) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg2 = PySequence_Size(obj1); arg3 = (int*) malloc(arg2*sizeof(int)); for( int i = 0; i<arg2; i++ ) { PyObject *o = PySequence_GetItem(obj1,i); if ( !PyArg_Parse(o,"i",&arg3[i]) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } res4 = SWIG_ConvertPtr(obj2, &argp4,SWIGTYPE_p_OGRLayerShadow, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "RasterizeLayer" "', argument " "4"" of type '" "OGRLayerShadow *""'"); } arg4 = reinterpret_cast< OGRLayerShadow * >(argp4); if (obj3) { res5 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg5), 0, 0); if (!SWIG_IsOK(res5)) { SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "RasterizeLayer" "', argument " "5"" of type '" "void *""'"); } } if (obj4) { res6 = SWIG_ConvertPtr(obj4,SWIG_as_voidptrptr(&arg6), 0, 0); if (!SWIG_IsOK(res6)) { SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "RasterizeLayer" "', argument " "6"" of type '" "void *""'"); } } if (obj5) { { /* %typemap(in,numinputs=1) (int nList, double* pList)*/ /* check if is List */ if ( !PySequence_Check(obj5) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg7 = PySequence_Size(obj5); arg8 = (double*) malloc(arg7*sizeof(double)); for( int i = 0; i<arg7; i++ ) { PyObject *o = PySequence_GetItem(obj5,i); if ( !PyArg_Parse(o,"d",&arg8[i]) ) { PyErr_SetString(PyExc_TypeError, "not a number"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } } if (obj6) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj6) || PyUnicode_Check(obj6) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj6) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj6); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj6,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg9 = CSLAddString( arg9, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg9 = CSLAddString( arg9, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg9 = CSLAddString( arg9, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } if (obj7) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj7 && obj7 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj7, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg10 = GDALTermProgress; } else { if (!PyCallable_Check(obj7)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj7; arg10 = PyProgressProxy; } } } } if (obj8) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj8 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg4) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)RasterizeLayer(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (int nList, int* pList) */ if (arg3) { free((void*) arg3); } } { /* %typemap(freearg) (int nList, double* pList) */ if (arg8) { free((void*) arg8); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg9 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) (int nList, int* pList) */ if (arg3) { free((void*) arg3); } } { /* %typemap(freearg) (int nList, double* pList) */ if (arg8) { free((void*) arg8); } } { /* %typemap(freearg) char **options */ CSLDestroy( arg9 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_Polygonize(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; OGRLayerShadow *arg3 = (OGRLayerShadow *) 0 ; int arg4 ; char **arg5 = (char **) NULL ; GDALProgressFunc arg6 = (GDALProgressFunc) NULL ; void *arg7 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "srcBand",(char *) "maskBand",(char *) "outLayer",(char *) "iPixValField",(char *) "options",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg7 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOO:Polygonize",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Polygonize" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Polygonize" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_OGRLayerShadow, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Polygonize" "', argument " "3"" of type '" "OGRLayerShadow *""'"); } arg3 = reinterpret_cast< OGRLayerShadow * >(argp3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Polygonize" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); if (obj4) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj4) || PyUnicode_Check(obj4) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj4) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj4); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj4,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg5 = CSLAddString( arg5, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg5 = CSLAddString( arg5, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg5 = CSLAddString( arg5, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } if (obj5) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj5 && obj5 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj5, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg6 = GDALTermProgress; } else { if (!PyCallable_Check(obj5)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj5; arg6 = PyProgressProxy; } } } } if (obj6) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj6 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)Polygonize(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg5 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg5 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_FillNodata(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; double arg3 ; int arg4 ; char **arg5 = (char **) NULL ; GDALProgressFunc arg6 = (GDALProgressFunc) NULL ; void *arg7 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; double val3 ; int ecode3 = 0 ; int val4 ; int ecode4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "targetBand",(char *) "maskBand",(char *) "maxSearchDist",(char *) "smoothingIterations",(char *) "options",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg7 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOO:FillNodata",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FillNodata" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FillNodata" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FillNodata" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FillNodata" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); if (obj4) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj4) || PyUnicode_Check(obj4) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj4) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj4); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj4,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg5 = CSLAddString( arg5, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg5 = CSLAddString( arg5, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg5 = CSLAddString( arg5, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } if (obj5) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj5 && obj5 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj5, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg6 = GDALTermProgress; } else { if (!PyCallable_Check(obj5)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj5; arg6 = PyProgressProxy; } } } } if (obj6) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj6 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)FillNodata(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg5 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg5 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_SieveFilter(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg3 = (GDALRasterBandShadow *) 0 ; int arg4 ; int arg5 = (int) 4 ; char **arg6 = (char **) NULL ; GDALProgressFunc arg7 = (GDALProgressFunc) NULL ; void *arg8 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; int val4 ; int ecode4 = 0 ; int val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; PyObject * obj7 = 0 ; char * kwnames[] = { (char *) "srcBand",(char *) "maskBand",(char *) "dstBand",(char *) "threshold",(char *) "connectedness",(char *) "options",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg8 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOOO:SieveFilter",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SieveFilter" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SieveFilter" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "SieveFilter" "', argument " "3"" of type '" "GDALRasterBandShadow *""'"); } arg3 = reinterpret_cast< GDALRasterBandShadow * >(argp3); ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "SieveFilter" "', argument " "4"" of type '" "int""'"); } arg4 = static_cast< int >(val4); if (obj4) { ecode5 = SWIG_AsVal_int(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "SieveFilter" "', argument " "5"" of type '" "int""'"); } arg5 = static_cast< int >(val5); } if (obj5) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj5) || PyUnicode_Check(obj5) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj5) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj5); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj5,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg6 = CSLAddString( arg6, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg6 = CSLAddString( arg6, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg6 = CSLAddString( arg6, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } if (obj6) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj6 && obj6 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj6, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg7 = GDALTermProgress; } else { if (!PyCallable_Check(obj6)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj6; arg7 = PyProgressProxy; } } } } if (obj7) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj7 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)SieveFilter(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) char **options */ CSLDestroy( arg6 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg6 ); } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_RegenerateOverviews(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; int arg2 ; GDALRasterBandShadow **arg3 = (GDALRasterBandShadow **) 0 ; char *arg4 = (char *) "average" ; GDALProgressFunc arg5 = (GDALProgressFunc) NULL ; void *arg6 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; int res4 ; char *buf4 = 0 ; int alloc4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; char * kwnames[] = { (char *) "srcBand",(char *) "overviewBandCount",(char *) "resampling",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg6 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOO:RegenerateOverviews",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RegenerateOverviews" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); { /* OBJECT_LIST_INPUT %typemap(in) (int itemcount, GDALRasterBandShadow *optional_##GDALRasterBandShadow)*/ if ( !PySequence_Check(obj1) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg2 = PySequence_Size(obj1); arg3 = (GDALRasterBandShadow**) CPLMalloc(arg2*sizeof(GDALRasterBandShadow*)); for( int i = 0; i<arg2; i++ ) { PyObject *o = PySequence_GetItem(obj1,i); #if 0x010340 <= 0x010337 PySwigObject *sobj = SWIG_Python_GetSwigThis(o); #else SwigPyObject *sobj = SWIG_Python_GetSwigThis(o); #endif GDALRasterBandShadow* rawobjectpointer = NULL; if (!sobj) { Py_DECREF(o); SWIG_fail; } rawobjectpointer = (GDALRasterBandShadow*) sobj->ptr; arg3[i] = rawobjectpointer; Py_DECREF(o); } } if (obj2) { res4 = SWIG_AsCharPtrAndSize(obj2, &buf4, NULL, &alloc4); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "RegenerateOverviews" "', argument " "4"" of type '" "char const *""'"); } arg4 = reinterpret_cast< char * >(buf4); } if (obj3) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj3 && obj3 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj3, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg5 = GDALTermProgress; } else { if (!PyCallable_Check(obj3)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj3; arg5 = PyProgressProxy; } } } } if (obj4) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj4 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)RegenerateOverviews(arg1,arg2,arg3,(char const *)arg4,arg5,arg6); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* OBJECT_LIST_INPUT %typemap(freearg) (int object_list_count, GDALRasterBandShadow **poObjects)*/ CPLFree( arg3 ); } if (alloc4 == SWIG_NEWOBJ) delete[] buf4; { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* OBJECT_LIST_INPUT %typemap(freearg) (int object_list_count, GDALRasterBandShadow **poObjects)*/ CPLFree( arg3 ); } if (alloc4 == SWIG_NEWOBJ) delete[] buf4; { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_RegenerateOverview(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; char *arg3 = (char *) "average" ; GDALProgressFunc arg4 = (GDALProgressFunc) NULL ; void *arg5 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; char * kwnames[] = { (char *) "srcBand",(char *) "overviewBand",(char *) "resampling",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg5 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOO:RegenerateOverview",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "RegenerateOverview" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "RegenerateOverview" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "RegenerateOverview" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } if (obj3) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj3 && obj3 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj3, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg4 = GDALTermProgress; } else { if (!PyCallable_Check(obj3)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj3; arg4 = PyProgressProxy; } } } } if (obj4) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj4 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)RegenerateOverview(arg1,arg2,(char const *)arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc3 == SWIG_NEWOBJ) delete[] buf3; { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: if (alloc3 == SWIG_NEWOBJ) delete[] buf3; { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_ContourGenerate(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALRasterBandShadow *arg1 = (GDALRasterBandShadow *) 0 ; double arg2 ; double arg3 ; int arg4 ; double *arg5 = (double *) 0 ; int arg6 ; double arg7 ; OGRLayerShadow *arg8 = (OGRLayerShadow *) 0 ; int arg9 ; int arg10 ; GDALProgressFunc arg11 = (GDALProgressFunc) NULL ; void *arg12 = (void *) NULL ; void *argp1 = 0 ; int res1 = 0 ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; int val6 ; int ecode6 = 0 ; double val7 ; int ecode7 = 0 ; void *argp8 = 0 ; int res8 = 0 ; int val9 ; int ecode9 = 0 ; int val10 ; int ecode10 = 0 ; 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 ; PyObject * obj10 = 0 ; char * kwnames[] = { (char *) "srcBand",(char *) "contourInterval",(char *) "contourBase",(char *) "fixedLevelCount",(char *) "useNoData",(char *) "noDataValue",(char *) "dstLayer",(char *) "idField",(char *) "elevField",(char *) "callback",(char *) "callback_data", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg12 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOOOOOO|OO:ContourGenerate",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ContourGenerate" "', argument " "1"" of type '" "GDALRasterBandShadow *""'"); } arg1 = reinterpret_cast< GDALRasterBandShadow * >(argp1); ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ContourGenerate" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "ContourGenerate" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); { /* %typemap(in,numinputs=1) (int nList, double* pList)*/ /* check if is List */ if ( !PySequence_Check(obj3) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg4 = PySequence_Size(obj3); arg5 = (double*) malloc(arg4*sizeof(double)); for( int i = 0; i<arg4; i++ ) { PyObject *o = PySequence_GetItem(obj3,i); if ( !PyArg_Parse(o,"d",&arg5[i]) ) { PyErr_SetString(PyExc_TypeError, "not a number"); Py_DECREF(o); SWIG_fail; } Py_DECREF(o); } } ecode6 = SWIG_AsVal_int(obj4, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "ContourGenerate" "', argument " "6"" of type '" "int""'"); } arg6 = static_cast< int >(val6); ecode7 = SWIG_AsVal_double(obj5, &val7); if (!SWIG_IsOK(ecode7)) { SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "ContourGenerate" "', argument " "7"" of type '" "double""'"); } arg7 = static_cast< double >(val7); res8 = SWIG_ConvertPtr(obj6, &argp8,SWIGTYPE_p_OGRLayerShadow, 0 | 0 ); if (!SWIG_IsOK(res8)) { SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "ContourGenerate" "', argument " "8"" of type '" "OGRLayerShadow *""'"); } arg8 = reinterpret_cast< OGRLayerShadow * >(argp8); ecode9 = SWIG_AsVal_int(obj7, &val9); if (!SWIG_IsOK(ecode9)) { SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "ContourGenerate" "', argument " "9"" of type '" "int""'"); } arg9 = static_cast< int >(val9); ecode10 = SWIG_AsVal_int(obj8, &val10); if (!SWIG_IsOK(ecode10)) { SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "ContourGenerate" "', argument " "10"" of type '" "int""'"); } arg10 = static_cast< int >(val10); if (obj9) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj9 && obj9 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj9, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg11 = GDALTermProgress; } else { if (!PyCallable_Check(obj9)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj9; arg11 = PyProgressProxy; } } } } if (obj10) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj10 ; } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg8) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)ContourGenerate(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) (int nList, double* pList) */ if (arg5) { free((void*) arg5); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return resultobj; fail: { /* %typemap(freearg) (int nList, double* pList) */ if (arg5) { free((void*) arg5); } } { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } return NULL; } SWIGINTERN PyObject *_wrap_AutoCreateWarpedVRT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; char *arg2 = (char *) 0 ; char *arg3 = (char *) 0 ; GDALResampleAlg arg4 = (GDALResampleAlg) GRA_NearestNeighbour ; double arg5 = (double) 0.0 ; void *argp1 = 0 ; int res1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int res3 ; char *buf3 = 0 ; int alloc3 = 0 ; int val4 ; int ecode4 = 0 ; double val5 ; int ecode5 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; GDALDatasetShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|OOOO:AutoCreateWarpedVRT",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "AutoCreateWarpedVRT" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); if (obj1) { res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "AutoCreateWarpedVRT" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); } if (obj2) { res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "AutoCreateWarpedVRT" "', argument " "3"" of type '" "char const *""'"); } arg3 = reinterpret_cast< char * >(buf3); } if (obj3) { ecode4 = SWIG_AsVal_int(obj3, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "AutoCreateWarpedVRT" "', argument " "4"" of type '" "GDALResampleAlg""'"); } arg4 = static_cast< GDALResampleAlg >(val4); } if (obj4) { ecode5 = SWIG_AsVal_double(obj4, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "AutoCreateWarpedVRT" "', argument " "5"" of type '" "double""'"); } arg5 = static_cast< double >(val5); } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDatasetShadow *)AutoCreateWarpedVRT(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDatasetShadow, SWIG_POINTER_OWN | 0 ); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; if (alloc3 == SWIG_NEWOBJ) delete[] buf3; return NULL; } SWIGINTERN PyObject *_wrap_new_Transformer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDatasetShadow *arg1 = (GDALDatasetShadow *) 0 ; GDALDatasetShadow *arg2 = (GDALDatasetShadow *) 0 ; char **arg3 = (char **) 0 ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; GDALTransformerInfoShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OOO:new_Transformer",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Transformer" "', argument " "1"" of type '" "GDALDatasetShadow *""'"); } arg1 = reinterpret_cast< GDALDatasetShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALDatasetShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_Transformer" "', argument " "2"" of type '" "GDALDatasetShadow *""'"); } arg2 = reinterpret_cast< GDALDatasetShadow * >(argp2); { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj2) || PyUnicode_Check(obj2) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj2) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj2); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj2,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg3 = CSLAddString( arg3, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg3 = CSLAddString( arg3, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg3 = CSLAddString( arg3, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALTransformerInfoShadow *)new_GDALTransformerInfoShadow(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALTransformerInfoShadow, SWIG_POINTER_NEW | 0 ); { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg3 ); } return NULL; } SWIGINTERN PyObject *_wrap_delete_Transformer(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALTransformerInfoShadow *arg1 = (GDALTransformerInfoShadow *) 0 ; void *argp1 = 0 ; int res1 = 0 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:delete_Transformer",&obj0)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALTransformerInfoShadow, SWIG_POINTER_DISOWN | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Transformer" "', argument " "1"" of type '" "GDALTransformerInfoShadow *""'"); } arg1 = reinterpret_cast< GDALTransformerInfoShadow * >(argp1); { if ( bUseExceptions ) { CPLErrorReset(); } delete_GDALTransformerInfoShadow(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Transformer_TransformPoint__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALTransformerInfoShadow *arg1 = (GDALTransformerInfoShadow *) 0 ; int arg2 ; double *arg3 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; double argin3[3] ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:Transformer_TransformPoint",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALTransformerInfoShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Transformer_TransformPoint" "', argument " "1"" of type '" "GDALTransformerInfoShadow *""'"); } arg1 = reinterpret_cast< GDALTransformerInfoShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Transformer_TransformPoint" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { /* %typemap(in) (double argin3[ANY]) */ arg3 = argin3; if (! PySequence_Check(obj2) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int seq_size = PySequence_Size(obj2); if ( seq_size != 3 ) { PyErr_SetString(PyExc_TypeError, "sequence must have length ##size"); SWIG_fail; } for (unsigned int i=0; i<3; i++) { PyObject *o = PySequence_GetItem(obj2,i); double val; if ( !PyArg_Parse(o, "d", &val ) ) { PyErr_SetString(PyExc_TypeError, "not a number"); Py_DECREF(o); SWIG_fail; } arg3[i] = val; Py_DECREF(o); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALTransformerInfoShadow_TransformPoint__SWIG_0(arg1,arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) (double argout[ANY]) */ PyObject *out = CreateTupleFromDoubleArray( arg3, 3 ); resultobj = t_output_helper(resultobj,out); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Transformer_TransformPoint__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALTransformerInfoShadow *arg1 = (GDALTransformerInfoShadow *) 0 ; double *arg2 ; int arg3 ; double arg4 ; double arg5 ; double arg6 = (double) 0.0 ; void *argp1 = 0 ; int res1 = 0 ; double argout2[3] ; int val3 ; int ecode3 = 0 ; double val4 ; int ecode4 = 0 ; double val5 ; int ecode5 = 0 ; double val6 ; int ecode6 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; int result; { /* %typemap(in,numinputs=0) (double argout2[ANY]) */ arg2 = argout2; } if (!PyArg_ParseTuple(args,(char *)"OOOO|O:Transformer_TransformPoint",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALTransformerInfoShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Transformer_TransformPoint" "', argument " "1"" of type '" "GDALTransformerInfoShadow *""'"); } arg1 = reinterpret_cast< GDALTransformerInfoShadow * >(argp1); ecode3 = SWIG_AsVal_int(obj1, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Transformer_TransformPoint" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); ecode4 = SWIG_AsVal_double(obj2, &val4); if (!SWIG_IsOK(ecode4)) { SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Transformer_TransformPoint" "', argument " "4"" of type '" "double""'"); } arg4 = static_cast< double >(val4); ecode5 = SWIG_AsVal_double(obj3, &val5); if (!SWIG_IsOK(ecode5)) { SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Transformer_TransformPoint" "', argument " "5"" of type '" "double""'"); } arg5 = static_cast< double >(val5); if (obj4) { ecode6 = SWIG_AsVal_double(obj4, &val6); if (!SWIG_IsOK(ecode6)) { SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "Transformer_TransformPoint" "', argument " "6"" of type '" "double""'"); } arg6 = static_cast< double >(val6); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALTransformerInfoShadow_TransformPoint__SWIG_1(arg1,arg2,arg3,arg4,arg5,arg6); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) (double argout[ANY]) */ PyObject *out = CreateTupleFromDoubleArray( arg2, 3 ); resultobj = t_output_helper(resultobj,out); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Transformer_TransformPoint(PyObject *self, PyObject *args) { int argc; PyObject *argv[6]; int ii; if (!PyTuple_Check(args)) SWIG_fail; argc = (int)PyObject_Length(args); for (ii = 0; (ii < argc) && (ii < 5); ii++) { argv[ii] = PyTuple_GET_ITEM(args,ii); } if (argc == 3) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_GDALTransformerInfoShadow, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { void *vptr = 0; int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_double, 0); _v = SWIG_CheckState(res); if (_v) { return _wrap_Transformer_TransformPoint__SWIG_0(self, args); } } } } if ((argc >= 4) && (argc <= 5)) { int _v; void *vptr = 0; int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_GDALTransformerInfoShadow, 0); _v = SWIG_CheckState(res); if (_v) { { int res = SWIG_AsVal_int(argv[1], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_double(argv[2], NULL); _v = SWIG_CheckState(res); } if (_v) { { int res = SWIG_AsVal_double(argv[3], NULL); _v = SWIG_CheckState(res); } if (_v) { if (argc <= 4) { return _wrap_Transformer_TransformPoint__SWIG_1(self, args); } { int res = SWIG_AsVal_double(argv[4], NULL); _v = SWIG_CheckState(res); } if (_v) { return _wrap_Transformer_TransformPoint__SWIG_1(self, args); } } } } } } fail: SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'Transformer_TransformPoint'.\n" " Possible C/C++ prototypes are:\n" " TransformPoint(GDALTransformerInfoShadow *,int,double [3])\n" " TransformPoint(GDALTransformerInfoShadow *,double [3],int,double,double,double)\n"); return NULL; } SWIGINTERN PyObject *_wrap_Transformer_TransformPoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALTransformerInfoShadow *arg1 = (GDALTransformerInfoShadow *) 0 ; int arg2 ; int arg3 ; double *arg4 = (double *) 0 ; double *arg5 = (double *) 0 ; double *arg6 = (double *) 0 ; int *arg7 = (int *) 0 ; void *argp1 = 0 ; int res1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"OOO:Transformer_TransformPoints",&obj0,&obj1,&obj2)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALTransformerInfoShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Transformer_TransformPoints" "', argument " "1"" of type '" "GDALTransformerInfoShadow *""'"); } arg1 = reinterpret_cast< GDALTransformerInfoShadow * >(argp1); ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Transformer_TransformPoints" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); { /* typemap(in,numinputs=1) (int nCount, double *x, double *y, double *z, int* panSuccess) */ if ( !PySequence_Check(obj2) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } arg3 = PySequence_Size(obj2); arg4 = (double*) VSIMalloc(arg3*sizeof(double)); arg5 = (double*) VSIMalloc(arg3*sizeof(double)); arg6 = (double*) VSIMalloc(arg3*sizeof(double)); arg7 = (int*) VSIMalloc(arg3*sizeof(int)); if (arg4 == NULL || arg5 == NULL || arg6 == NULL || arg7 == NULL) { PyErr_SetString( PyExc_RuntimeError, "Out of memory" ); SWIG_fail; } if (!DecomposeSequenceOfCoordinates(obj2,arg3,arg4,arg5,arg6)) { SWIG_fail; } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALTransformerInfoShadow_TransformPoints(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) (int nCount, double *x, double *y, double *z, int* panSuccess) */ Py_DECREF(resultobj); PyObject *xyz = PyList_New( arg3 ); PyObject *success = PyList_New( arg3 ); for( int i=0; i< arg3; i++ ) { PyObject *tuple = PyTuple_New( 3 ); PyTuple_SetItem( tuple, 0, PyFloat_FromDouble( (arg4)[i] ) ); PyTuple_SetItem( tuple, 1, PyFloat_FromDouble( (arg5)[i] ) ); PyTuple_SetItem( tuple, 2, PyFloat_FromDouble( (arg6)[i] ) ); PyList_SetItem( xyz, i, tuple ); PyList_SetItem( success, i, Py_BuildValue( "i", (arg7)[i]) ); } resultobj = PyTuple_New( 2 ); PyTuple_SetItem( resultobj, 0, xyz ); PyTuple_SetItem( resultobj, 1, success ); } { /* %typemap(freearg) (int nCount, double *x, double *y, double *z, int* panSuccess) */ VSIFree(arg4); VSIFree(arg5); VSIFree(arg6); VSIFree(arg7); } return resultobj; fail: { /* %typemap(freearg) (int nCount, double *x, double *y, double *z, int* panSuccess) */ VSIFree(arg4); VSIFree(arg5); VSIFree(arg6); VSIFree(arg7); } return NULL; } SWIGINTERN PyObject *_wrap_Transformer_TransformGeolocations(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) { PyObject *resultobj = 0; GDALTransformerInfoShadow *arg1 = (GDALTransformerInfoShadow *) 0 ; GDALRasterBandShadow *arg2 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg3 = (GDALRasterBandShadow *) 0 ; GDALRasterBandShadow *arg4 = (GDALRasterBandShadow *) 0 ; GDALProgressFunc arg5 = (GDALProgressFunc) NULL ; void *arg6 = (void *) NULL ; char **arg7 = (char **) NULL ; void *argp1 = 0 ; int res1 = 0 ; void *argp2 = 0 ; int res2 = 0 ; void *argp3 = 0 ; int res3 = 0 ; void *argp4 = 0 ; int res4 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; PyObject * obj3 = 0 ; PyObject * obj4 = 0 ; PyObject * obj5 = 0 ; PyObject * obj6 = 0 ; char * kwnames[] = { (char *) "self",(char *) "xBand",(char *) "yBand",(char *) "zBand",(char *) "callback",(char *) "callback_data",(char *) "options", NULL }; int result; /* %typemap(arginit) ( const char* callback_data=NULL) */ PyProgressData *psProgressInfo; psProgressInfo = (PyProgressData *) CPLCalloc(1,sizeof(PyProgressData)); psProgressInfo->nLastReported = -1; psProgressInfo->psPyCallback = NULL; psProgressInfo->psPyCallbackData = NULL; arg6 = psProgressInfo; if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|OOO:Transformer_TransformGeolocations",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_GDALTransformerInfoShadow, 0 | 0 ); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Transformer_TransformGeolocations" "', argument " "1"" of type '" "GDALTransformerInfoShadow *""'"); } arg1 = reinterpret_cast< GDALTransformerInfoShadow * >(argp1); res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Transformer_TransformGeolocations" "', argument " "2"" of type '" "GDALRasterBandShadow *""'"); } arg2 = reinterpret_cast< GDALRasterBandShadow * >(argp2); res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res3)) { SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Transformer_TransformGeolocations" "', argument " "3"" of type '" "GDALRasterBandShadow *""'"); } arg3 = reinterpret_cast< GDALRasterBandShadow * >(argp3); res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_GDALRasterBandShadow, 0 | 0 ); if (!SWIG_IsOK(res4)) { SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "Transformer_TransformGeolocations" "', argument " "4"" of type '" "GDALRasterBandShadow *""'"); } arg4 = reinterpret_cast< GDALRasterBandShadow * >(argp4); if (obj4) { { /* %typemap(in) (GDALProgressFunc callback = NULL) */ /* callback_func typemap */ if (obj4 && obj4 != Py_None ) { void* cbfunction = NULL; SWIG_ConvertPtr( obj4, (void**)&cbfunction, SWIGTYPE_p_f_double_p_q_const__char_p_void__int, SWIG_POINTER_EXCEPTION | 0 ); if ( cbfunction == GDALTermProgress ) { arg5 = GDALTermProgress; } else { if (!PyCallable_Check(obj4)) { PyErr_SetString( PyExc_RuntimeError, "Object given is not a Python function" ); SWIG_fail; } psProgressInfo->psPyCallback = obj4; arg5 = PyProgressProxy; } } } } if (obj5) { { /* %typemap(in) ( void* callback_data=NULL) */ psProgressInfo->psPyCallbackData = obj5 ; } } if (obj6) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj6) || PyUnicode_Check(obj6) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj6) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj6); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj6,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg7 = CSLAddString( arg7, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg7 = CSLAddString( arg7, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg7 = CSLAddString( arg7, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if (!arg2) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg3) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if (!arg4) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALTransformerInfoShadow_TransformGeolocations(arg1,arg2,arg3,arg4,arg5,arg6,arg7); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } { /* %typemap(freearg) char **options */ CSLDestroy( arg7 ); } return resultobj; fail: { /* %typemap(freearg) ( void* callback_data=NULL) */ CPLFree(psProgressInfo); } { /* %typemap(freearg) char **options */ CSLDestroy( arg7 ); } return NULL; } SWIGINTERN PyObject *Transformer_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; SWIG_TypeNewClientData(SWIGTYPE_p_GDALTransformerInfoShadow, SWIG_NewClientData(obj)); return SWIG_Py_Void(); } SWIGINTERN PyObject *_wrap_ApplyGeoTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; double *arg1 ; double arg2 ; double arg3 ; double *arg4 = (double *) 0 ; double *arg5 = (double *) 0 ; double argin1[6] ; double val2 ; int ecode2 = 0 ; double val3 ; int ecode3 = 0 ; double temp4 ; int res4 = SWIG_TMPOBJ ; double temp5 ; int res5 = SWIG_TMPOBJ ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; arg4 = &temp4; arg5 = &temp5; if (!PyArg_ParseTuple(args,(char *)"OOO:ApplyGeoTransform",&obj0,&obj1,&obj2)) SWIG_fail; { /* %typemap(in) (double argin1[ANY]) */ arg1 = argin1; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int seq_size = PySequence_Size(obj0); if ( seq_size != 6 ) { PyErr_SetString(PyExc_TypeError, "sequence must have length ##size"); SWIG_fail; } for (unsigned int i=0; i<6; i++) { PyObject *o = PySequence_GetItem(obj0,i); double val; if ( !PyArg_Parse(o, "d", &val ) ) { PyErr_SetString(PyExc_TypeError, "not a number"); Py_DECREF(o); SWIG_fail; } arg1[i] = val; Py_DECREF(o); } } ecode2 = SWIG_AsVal_double(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "ApplyGeoTransform" "', argument " "2"" of type '" "double""'"); } arg2 = static_cast< double >(val2); ecode3 = SWIG_AsVal_double(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "ApplyGeoTransform" "', argument " "3"" of type '" "double""'"); } arg3 = static_cast< double >(val3); { if ( bUseExceptions ) { CPLErrorReset(); } GDALApplyGeoTransform(arg1,arg2,arg3,arg4,arg5); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); if (SWIG_IsTmpObj(res4)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg4))); } else { int new_flags = SWIG_IsNewObj(res4) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg4), SWIGTYPE_p_double, new_flags)); } if (SWIG_IsTmpObj(res5)) { resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg5))); } else { int new_flags = SWIG_IsNewObj(res5) ? (SWIG_POINTER_OWN | 0 ) : 0 ; resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_double, new_flags)); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_InvGeoTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; double *arg1 ; double *arg2 ; double argin1[6] ; double argout2[6] ; PyObject * obj0 = 0 ; int result; { /* %typemap(in,numinputs=0) (double argout2[ANY]) */ arg2 = argout2; } if (!PyArg_ParseTuple(args,(char *)"O:InvGeoTransform",&obj0)) SWIG_fail; { /* %typemap(in) (double argin1[ANY]) */ arg1 = argin1; if (! PySequence_Check(obj0) ) { PyErr_SetString(PyExc_TypeError, "not a sequence"); SWIG_fail; } int seq_size = PySequence_Size(obj0); if ( seq_size != 6 ) { PyErr_SetString(PyExc_TypeError, "sequence must have length ##size"); SWIG_fail; } for (unsigned int i=0; i<6; i++) { PyObject *o = PySequence_GetItem(obj0,i); double val; if ( !PyArg_Parse(o, "d", &val ) ) { PyErr_SetString(PyExc_TypeError, "not a number"); Py_DECREF(o); SWIG_fail; } arg1[i] = val; Py_DECREF(o); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALInvGeoTransform(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); { /* %typemap(argout) (double argout[ANY]) */ PyObject *out = CreateTupleFromDoubleArray( arg2, 6 ); resultobj = t_output_helper(resultobj,out); } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_VersionInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) "VERSION_NUM" ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"|O:VersionInfo",&obj0)) SWIG_fail; if (obj0) { res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "VersionInfo" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALVersionInfo((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_AllRegister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":AllRegister")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } GDALAllRegister(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GDALDestroyDriverManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; if (!PyArg_ParseTuple(args,(char *)":GDALDestroyDriverManager")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } GDALDestroyDriverManager(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetCacheMax(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GIntBig result; if (!PyArg_ParseTuple(args,(char *)":GetCacheMax")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } result = wrapper_GDALGetCacheMax(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { char szTmp[32]; sprintf(szTmp, CPL_FRMT_GIB, result); #if PY_VERSION_HEX>=0x03000000 resultobj = PyLong_FromString(szTmp, NULL, 10); #else resultobj = PyInt_FromString(szTmp, NULL, 10); #endif } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetCacheUsed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GIntBig result; if (!PyArg_ParseTuple(args,(char *)":GetCacheUsed")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } result = wrapper_GDALGetCacheUsed(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { char szTmp[32]; sprintf(szTmp, CPL_FRMT_GIB, result); #if PY_VERSION_HEX>=0x03000000 resultobj = PyLong_FromString(szTmp, NULL, 10); #else resultobj = PyInt_FromString(szTmp, NULL, 10); #endif } return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_SetCacheMax(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GIntBig arg1 ; PyObject * obj0 = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:SetCacheMax",&obj0)) SWIG_fail; { PY_LONG_LONG val; if ( !PyArg_Parse(obj0,"L",&val) ) { PyErr_SetString(PyExc_TypeError, "not an integer"); SWIG_fail; } arg1 = (GIntBig)val; } { if ( bUseExceptions ) { CPLErrorReset(); } wrapper_GDALSetCacheMax(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_Py_Void(); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetDataTypeSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDataType arg1 ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:GetDataTypeSize",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "GetDataTypeSize" "', argument " "1"" of type '" "GDALDataType""'"); } arg1 = static_cast< GDALDataType >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALGetDataTypeSize(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_DataTypeIsComplex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDataType arg1 ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; int result; if (!PyArg_ParseTuple(args,(char *)"O:DataTypeIsComplex",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "DataTypeIsComplex" "', argument " "1"" of type '" "GDALDataType""'"); } arg1 = static_cast< GDALDataType >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GDALDataTypeIsComplex(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetDataTypeName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALDataType arg1 ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GetDataTypeName",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "GetDataTypeName" "', argument " "1"" of type '" "GDALDataType""'"); } arg1 = static_cast< GDALDataType >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALGetDataTypeName(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetDataTypeByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; GDALDataType result; if (!PyArg_ParseTuple(args,(char *)"O:GetDataTypeByName",&obj0)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GetDataTypeByName" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDataType)GDALGetDataTypeByName((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_GetColorInterpretationName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALColorInterp arg1 ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GetColorInterpretationName",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "GetColorInterpretationName" "', argument " "1"" of type '" "GDALColorInterp""'"); } arg1 = static_cast< GDALColorInterp >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALGetColorInterpretationName(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetPaletteInterpretationName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; GDALPaletteInterp arg1 ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GetPaletteInterpretationName",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "GetPaletteInterpretationName" "', argument " "1"" of type '" "GDALPaletteInterp""'"); } arg1 = static_cast< GDALPaletteInterp >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALGetPaletteInterpretationName(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_DecToDMS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; double arg1 ; char *arg2 = (char *) 0 ; int arg3 = (int) 2 ; double val1 ; int ecode1 = 0 ; int res2 ; char *buf2 = 0 ; int alloc2 = 0 ; int val3 ; int ecode3 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; char *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"OO|O:DecToDMS",&obj0,&obj1,&obj2)) SWIG_fail; ecode1 = SWIG_AsVal_double(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "DecToDMS" "', argument " "1"" of type '" "double""'"); } arg1 = static_cast< double >(val1); res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); if (!SWIG_IsOK(res2)) { SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "DecToDMS" "', argument " "2"" of type '" "char const *""'"); } arg2 = reinterpret_cast< char * >(buf2); if (obj2) { ecode3 = SWIG_AsVal_int(obj2, &val3); if (!SWIG_IsOK(ecode3)) { SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "DecToDMS" "', argument " "3"" of type '" "int""'"); } arg3 = static_cast< int >(val3); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char *)GDALDecToDMS(arg1,(char const *)arg2,arg3); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_FromCharPtr((const char *)result); if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return resultobj; fail: if (alloc2 == SWIG_NEWOBJ) delete[] buf2; return NULL; } SWIGINTERN PyObject *_wrap_PackedDMSToDec(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; double arg1 ; double val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:PackedDMSToDec",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_double(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "PackedDMSToDec" "', argument " "1"" of type '" "double""'"); } arg1 = static_cast< double >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDALPackedDMSToDec(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_DecToPackedDMS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; double arg1 ; double val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; double result; if (!PyArg_ParseTuple(args,(char *)"O:DecToPackedDMS",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_double(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "DecToPackedDMS" "', argument " "1"" of type '" "double""'"); } arg1 = static_cast< double >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (double)GDALDecToPackedDMS(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_double(static_cast< double >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_ParseXMLString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; CPLXMLNode *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:ParseXMLString",&obj0)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "ParseXMLString" "', argument " "1"" of type '" "char *""'"); } arg1 = reinterpret_cast< char * >(buf1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (CPLXMLNode *)CPLParseXMLString(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (CPLXMLNode*) */ CPLXMLNode *psXMLTree = result; int bFakeRoot = FALSE; if( psXMLTree != NULL && psXMLTree->psNext != NULL ) { CPLXMLNode *psFirst = psXMLTree; /* create a "pseudo" root if we have multiple elements */ psXMLTree = CPLCreateXMLNode( NULL, CXT_Element, "" ); psXMLTree->psChild = psFirst; bFakeRoot = TRUE; } resultobj = XMLTreeToPyList( psXMLTree ); if( bFakeRoot ) { psXMLTree->psChild = NULL; CPLDestroyXMLNode( psXMLTree ); } } if (alloc1 == SWIG_NEWOBJ) delete[] buf1; { /* %typemap(ret) (CPLXMLNode*) */ if ( result ) CPLDestroyXMLNode( result ); } return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_SerializeXMLTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; CPLXMLNode *arg1 = (CPLXMLNode *) 0 ; PyObject * obj0 = 0 ; retStringAndCPLFree *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:SerializeXMLTree",&obj0)) SWIG_fail; { /* %typemap(python,in) (CPLXMLNode* xmlnode ) */ arg1 = PyListToXMLTree( obj0 ); if ( !arg1 ) SWIG_fail; } { if ( bUseExceptions ) { CPLErrorReset(); } result = (retStringAndCPLFree *)CPLSerializeXMLTree(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) (retStringAndCPLFree*) */ if(result) { resultobj = GDALPythonObjectFromCStr( (const char *)result); CPLFree(result); } } { /* %typemap(freearg) (CPLXMLNode *xmlnode) */ if ( arg1 ) CPLDestroyXMLNode( arg1 ); } return resultobj; fail: { /* %typemap(freearg) (CPLXMLNode *xmlnode) */ if ( arg1 ) CPLDestroyXMLNode( arg1 ); } return NULL; } SWIGINTERN PyObject *_wrap_GetDriverCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int result; if (!PyArg_ParseTuple(args,(char *)":GetDriverCount")) SWIG_fail; { if ( bUseExceptions ) { CPLErrorReset(); } result = (int)GetDriverCount(); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_From_int(static_cast< int >(result)); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_GetDriverByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; int res1 ; char *buf1 = 0 ; int alloc1 = 0 ; PyObject * obj0 = 0 ; GDALDriverShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GetDriverByName",&obj0)) SWIG_fail; res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); if (!SWIG_IsOK(res1)) { SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GetDriverByName" "', argument " "1"" of type '" "char const *""'"); } arg1 = reinterpret_cast< char * >(buf1); { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDriverShadow *)GetDriverByName((char const *)arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return resultobj; fail: if (alloc1 == SWIG_NEWOBJ) delete[] buf1; return NULL; } SWIGINTERN PyObject *_wrap_GetDriver(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int arg1 ; int val1 ; int ecode1 = 0 ; PyObject * obj0 = 0 ; GDALDriverShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O:GetDriver",&obj0)) SWIG_fail; ecode1 = SWIG_AsVal_int(obj0, &val1); if (!SWIG_IsOK(ecode1)) { SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "GetDriver" "', argument " "1"" of type '" "int""'"); } arg1 = static_cast< int >(val1); { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDriverShadow *)GetDriver(arg1); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); return resultobj; fail: return NULL; } SWIGINTERN PyObject *_wrap_Open(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; GDALAccess arg2 = (GDALAccess) GA_ReadOnly ; int bToFree1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALDatasetShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:Open",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } if (obj1) { ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Open" "', argument " "2"" of type '" "GDALAccess""'"); } arg2 = static_cast< GDALAccess >(val2); } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDatasetShadow *)Open((char const *)arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDatasetShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_OpenShared(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; GDALAccess arg2 = (GDALAccess) GA_ReadOnly ; int bToFree1 = 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALDatasetShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:OpenShared",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } if (obj1) { ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "OpenShared" "', argument " "2"" of type '" "GDALAccess""'"); } arg2 = static_cast< GDALAccess >(val2); } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDatasetShadow *)OpenShared((char const *)arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDatasetShadow, SWIG_POINTER_OWN | 0 ); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } return NULL; } SWIGINTERN PyObject *_wrap_IdentifyDriver(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char *arg1 = (char *) 0 ; char **arg2 = (char **) NULL ; int bToFree1 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; GDALDriverShadow *result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:IdentifyDriver",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) (const char *utf8_path) */ arg1 = GDALPythonObjectToCStr( obj0, &bToFree1 ); if (arg1 == NULL) { PyErr_SetString( PyExc_RuntimeError, "not a string" ); SWIG_fail; } } if (obj1) { { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj1) || PyUnicode_Check(obj1) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj1) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj1); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj1,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg2 = CSLAddString( arg2, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg2 = CSLAddString( arg2, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg2 = CSLAddString( arg2, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } } { if (!arg1) { SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); } } { if ( bUseExceptions ) { CPLErrorReset(); } result = (GDALDriverShadow *)IdentifyDriver((char const *)arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_GDALDriverShadow, 0 | 0 ); { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } { /* %typemap(freearg) char **options */ CSLDestroy( arg2 ); } return resultobj; fail: { /* %typemap(freearg) (const char *utf8_path) */ GDALPythonFreeCStr(arg1, bToFree1); } { /* %typemap(freearg) char **options */ CSLDestroy( arg2 ); } return NULL; } SWIGINTERN PyObject *_wrap_GeneralCmdLineProcessor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; char **arg1 = (char **) 0 ; int arg2 = (int) 0 ; int val2 ; int ecode2 = 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; char **result = 0 ; if (!PyArg_ParseTuple(args,(char *)"O|O:GeneralCmdLineProcessor",&obj0,&obj1)) SWIG_fail; { /* %typemap(in) char **options */ /* Check if is a list (and reject strings, that are seen as sequence of characters) */ if ( ! PySequence_Check(obj0) || PyUnicode_Check(obj0) #if PY_VERSION_HEX < 0x03000000 || PyString_Check(obj0) #endif ) { PyErr_SetString(PyExc_TypeError,"not a sequence"); SWIG_fail; } int size = PySequence_Size(obj0); for (int i = 0; i < size; i++) { PyObject* pyObj = PySequence_GetItem(obj0,i); if (PyUnicode_Check(pyObj)) { char *pszStr; Py_ssize_t nLen; PyObject* pyUTF8Str = PyUnicode_AsUTF8String(pyObj); #if PY_VERSION_HEX >= 0x03000000 PyBytes_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #else PyString_AsStringAndSize(pyUTF8Str, &pszStr, &nLen); #endif arg1 = CSLAddString( arg1, pszStr ); Py_XDECREF(pyUTF8Str); } #if PY_VERSION_HEX >= 0x03000000 else if (PyBytes_Check(pyObj)) arg1 = CSLAddString( arg1, PyBytes_AsString(pyObj) ); #else else if (PyString_Check(pyObj)) arg1 = CSLAddString( arg1, PyString_AsString(pyObj) ); #endif else { Py_DECREF(pyObj); PyErr_SetString(PyExc_TypeError,"sequence must contain strings"); SWIG_fail; } Py_DECREF(pyObj); } } if (obj1) { ecode2 = SWIG_AsVal_int(obj1, &val2); if (!SWIG_IsOK(ecode2)) { SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "GeneralCmdLineProcessor" "', argument " "2"" of type '" "int""'"); } arg2 = static_cast< int >(val2); } { if ( bUseExceptions ) { CPLErrorReset(); } result = (char **)GeneralCmdLineProcessor(arg1,arg2); if ( bUseExceptions ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); } } } { /* %typemap(out) char **CSL -> ( string ) */ char **stringarray = result; if ( stringarray == NULL ) { resultobj = Py_None; Py_INCREF( resultobj ); } else { int len = CSLCount( stringarray ); resultobj = PyList_New( len ); for ( int i = 0; i < len; ++i ) { PyObject *o = GDALPythonObjectFromCStr( stringarray[i] ); PyList_SetItem(resultobj, i, o ); } } CSLDestroy(result); } { /* %typemap(freearg) char **options */ CSLDestroy( arg1 ); } return resultobj; fail: { /* %typemap(freearg) char **options */ CSLDestroy( arg1 ); } return NULL; } static PyMethodDef SwigMethods[] = { { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL}, { (char *)"GetUseExceptions", _wrap_GetUseExceptions, METH_VARARGS, (char *)"GetUseExceptions() -> int"}, { (char *)"UseExceptions", _wrap_UseExceptions, METH_VARARGS, (char *)"UseExceptions()"}, { (char *)"DontUseExceptions", _wrap_DontUseExceptions, METH_VARARGS, (char *)"DontUseExceptions()"}, { (char *)"VSIFReadL", _wrap_VSIFReadL, METH_VARARGS, (char *)"VSIFReadL(int nMembSize, int nMembCount, VSILFILE fp) -> int"}, { (char *)"Debug", _wrap_Debug, METH_VARARGS, (char *)"Debug(char msg_class, char message)"}, { (char *)"SetErrorHandler", _wrap_SetErrorHandler, METH_VARARGS, (char *)"SetErrorHandler(char pszCallbackName = None) -> CPLErr"}, { (char *)"PushErrorHandler", _wrap_PushErrorHandler, METH_VARARGS, (char *)"PushErrorHandler(CPLErrorHandler pfnErrorHandler = None) -> CPLErr"}, { (char *)"PopErrorHandler", _wrap_PopErrorHandler, METH_VARARGS, (char *)"PopErrorHandler()"}, { (char *)"Error", _wrap_Error, METH_VARARGS, (char *)"Error(CPLErr msg_class = CE_Failure, int err_code = 0, char msg = \"error\")"}, { (char *)"GOA2GetAuthorizationURL", _wrap_GOA2GetAuthorizationURL, METH_VARARGS, (char *)"GOA2GetAuthorizationURL(char pszScope) -> retStringAndCPLFree"}, { (char *)"GOA2GetRefreshToken", _wrap_GOA2GetRefreshToken, METH_VARARGS, (char *)"GOA2GetRefreshToken(char pszAuthToken, char pszScope) -> retStringAndCPLFree"}, { (char *)"GOA2GetAccessToken", _wrap_GOA2GetAccessToken, METH_VARARGS, (char *)"GOA2GetAccessToken(char pszRefreshToken, char pszScope) -> retStringAndCPLFree"}, { (char *)"ErrorReset", _wrap_ErrorReset, METH_VARARGS, (char *)"ErrorReset()"}, { (char *)"EscapeString", (PyCFunction) _wrap_EscapeString, METH_VARARGS | METH_KEYWORDS, (char *)"EscapeString(int len, int scheme = CPLES_SQL) -> retStringAndCPLFree"}, { (char *)"GetLastErrorNo", _wrap_GetLastErrorNo, METH_VARARGS, (char *)"GetLastErrorNo() -> int"}, { (char *)"GetLastErrorType", _wrap_GetLastErrorType, METH_VARARGS, (char *)"GetLastErrorType() -> int"}, { (char *)"GetLastErrorMsg", _wrap_GetLastErrorMsg, METH_VARARGS, (char *)"GetLastErrorMsg() -> char"}, { (char *)"PushFinderLocation", _wrap_PushFinderLocation, METH_VARARGS, (char *)"PushFinderLocation(char utf8_path)"}, { (char *)"PopFinderLocation", _wrap_PopFinderLocation, METH_VARARGS, (char *)"PopFinderLocation()"}, { (char *)"FinderClean", _wrap_FinderClean, METH_VARARGS, (char *)"FinderClean()"}, { (char *)"FindFile", _wrap_FindFile, METH_VARARGS, (char *)"FindFile(char pszClass, char utf8_path) -> char"}, { (char *)"ReadDir", _wrap_ReadDir, METH_VARARGS, (char *)"ReadDir(char utf8_path) -> char"}, { (char *)"ReadDirRecursive", _wrap_ReadDirRecursive, METH_VARARGS, (char *)"ReadDirRecursive(char utf8_path) -> char"}, { (char *)"SetConfigOption", _wrap_SetConfigOption, METH_VARARGS, (char *)"SetConfigOption(char pszKey, char pszValue)"}, { (char *)"GetConfigOption", _wrap_GetConfigOption, METH_VARARGS, (char *)"GetConfigOption(char pszKey, char pszDefault = None) -> char"}, { (char *)"CPLBinaryToHex", _wrap_CPLBinaryToHex, METH_VARARGS, (char *)"CPLBinaryToHex(int nBytes) -> retStringAndCPLFree"}, { (char *)"CPLHexToBinary", _wrap_CPLHexToBinary, METH_VARARGS, (char *)"CPLHexToBinary(char pszHex, int pnBytes) -> GByte"}, { (char *)"FileFromMemBuffer", _wrap_FileFromMemBuffer, METH_VARARGS, (char *)"FileFromMemBuffer(char utf8_path, int nBytes)"}, { (char *)"Unlink", _wrap_Unlink, METH_VARARGS, (char *)"Unlink(char utf8_path) -> int"}, { (char *)"HasThreadSupport", _wrap_HasThreadSupport, METH_VARARGS, (char *)"HasThreadSupport() -> int"}, { (char *)"Mkdir", _wrap_Mkdir, METH_VARARGS, (char *)"Mkdir(char utf8_path, int mode) -> int"}, { (char *)"Rmdir", _wrap_Rmdir, METH_VARARGS, (char *)"Rmdir(char utf8_path) -> int"}, { (char *)"Rename", _wrap_Rename, METH_VARARGS, (char *)"Rename(char pszOld, char pszNew) -> int"}, { (char *)"StatBuf_mode_get", _wrap_StatBuf_mode_get, METH_VARARGS, (char *)"StatBuf_mode_get(StatBuf self) -> int"}, { (char *)"StatBuf_size_get", _wrap_StatBuf_size_get, METH_VARARGS, (char *)"StatBuf_size_get(StatBuf self) -> GIntBig"}, { (char *)"StatBuf_mtime_get", _wrap_StatBuf_mtime_get, METH_VARARGS, (char *)"StatBuf_mtime_get(StatBuf self) -> GIntBig"}, { (char *)"new_StatBuf", _wrap_new_StatBuf, METH_VARARGS, (char *)"new_StatBuf(StatBuf psStatBuf) -> StatBuf"}, { (char *)"delete_StatBuf", _wrap_delete_StatBuf, METH_VARARGS, (char *)"delete_StatBuf(StatBuf self)"}, { (char *)"StatBuf_IsDirectory", _wrap_StatBuf_IsDirectory, METH_VARARGS, (char *)"StatBuf_IsDirectory(StatBuf self) -> int"}, { (char *)"StatBuf_swigregister", StatBuf_swigregister, METH_VARARGS, NULL}, { (char *)"VSIStatL", _wrap_VSIStatL, METH_VARARGS, (char *)"VSIStatL(char utf8_path, int nFlags = 0) -> int"}, { (char *)"VSIFOpenL", _wrap_VSIFOpenL, METH_VARARGS, (char *)"VSIFOpenL(char utf8_path, char pszMode) -> VSILFILE"}, { (char *)"VSIFCloseL", _wrap_VSIFCloseL, METH_VARARGS, (char *)"VSIFCloseL(VSILFILE arg0)"}, { (char *)"VSIFSeekL", _wrap_VSIFSeekL, METH_VARARGS, (char *)"VSIFSeekL(VSILFILE arg0, GIntBig arg1, int arg2) -> int"}, { (char *)"VSIFTellL", _wrap_VSIFTellL, METH_VARARGS, (char *)"VSIFTellL(VSILFILE arg0) -> GIntBig"}, { (char *)"VSIFTruncateL", _wrap_VSIFTruncateL, METH_VARARGS, (char *)"VSIFTruncateL(VSILFILE arg0, GIntBig arg1) -> int"}, { (char *)"VSIFWriteL", _wrap_VSIFWriteL, METH_VARARGS, (char *)"VSIFWriteL(int nLen, int size, int memb, VSILFILE f) -> int"}, { (char *)"MajorObject_GetDescription", _wrap_MajorObject_GetDescription, METH_VARARGS, (char *)"MajorObject_GetDescription(MajorObject self) -> char"}, { (char *)"MajorObject_SetDescription", _wrap_MajorObject_SetDescription, METH_VARARGS, (char *)"MajorObject_SetDescription(MajorObject self, char pszNewDesc)"}, { (char *)"MajorObject_GetMetadataDomainList", _wrap_MajorObject_GetMetadataDomainList, METH_VARARGS, (char *)"MajorObject_GetMetadataDomainList(MajorObject self) -> char"}, { (char *)"MajorObject_GetMetadata_Dict", _wrap_MajorObject_GetMetadata_Dict, METH_VARARGS, (char *)"MajorObject_GetMetadata_Dict(MajorObject self, char pszDomain = \"\") -> char"}, { (char *)"MajorObject_GetMetadata_List", _wrap_MajorObject_GetMetadata_List, METH_VARARGS, (char *)"MajorObject_GetMetadata_List(MajorObject self, char pszDomain = \"\") -> char"}, { (char *)"MajorObject_SetMetadata", _wrap_MajorObject_SetMetadata, METH_VARARGS, (char *)"\n" "SetMetadata(char papszMetadata, char pszDomain = \"\") -> CPLErr\n" "MajorObject_SetMetadata(MajorObject self, char pszMetadataString, char pszDomain = \"\") -> CPLErr\n" ""}, { (char *)"MajorObject_GetMetadataItem", _wrap_MajorObject_GetMetadataItem, METH_VARARGS, (char *)"MajorObject_GetMetadataItem(MajorObject self, char pszName, char pszDomain = \"\") -> char"}, { (char *)"MajorObject_SetMetadataItem", _wrap_MajorObject_SetMetadataItem, METH_VARARGS, (char *)"MajorObject_SetMetadataItem(MajorObject self, char pszName, char pszValue, char pszDomain = \"\") -> CPLErr"}, { (char *)"MajorObject_swigregister", MajorObject_swigregister, METH_VARARGS, NULL}, { (char *)"Driver_ShortName_get", _wrap_Driver_ShortName_get, METH_VARARGS, (char *)"Driver_ShortName_get(Driver self) -> char"}, { (char *)"Driver_LongName_get", _wrap_Driver_LongName_get, METH_VARARGS, (char *)"Driver_LongName_get(Driver self) -> char"}, { (char *)"Driver_HelpTopic_get", _wrap_Driver_HelpTopic_get, METH_VARARGS, (char *)"Driver_HelpTopic_get(Driver self) -> char"}, { (char *)"Driver_Create", (PyCFunction) _wrap_Driver_Create, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Driver_Create(Driver self, char utf8_path, int xsize, int ysize, \n" " int bands = 1, GDALDataType eType = GDT_Byte, \n" " char options = None) -> Dataset\n" ""}, { (char *)"Driver_CreateCopy", (PyCFunction) _wrap_Driver_CreateCopy, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Driver_CreateCopy(Driver self, char utf8_path, Dataset src, int strict = 1, \n" " char options = None, GDALProgressFunc callback = None, \n" " void callback_data = None) -> Dataset\n" ""}, { (char *)"Driver_Delete", _wrap_Driver_Delete, METH_VARARGS, (char *)"Driver_Delete(Driver self, char utf8_path) -> int"}, { (char *)"Driver_Rename", _wrap_Driver_Rename, METH_VARARGS, (char *)"Driver_Rename(Driver self, char newName, char oldName) -> int"}, { (char *)"Driver_CopyFiles", _wrap_Driver_CopyFiles, METH_VARARGS, (char *)"Driver_CopyFiles(Driver self, char newName, char oldName) -> int"}, { (char *)"Driver_Register", _wrap_Driver_Register, METH_VARARGS, (char *)"Driver_Register(Driver self) -> int"}, { (char *)"Driver_Deregister", _wrap_Driver_Deregister, METH_VARARGS, (char *)"Driver_Deregister(Driver self)"}, { (char *)"Driver_swigregister", Driver_swigregister, METH_VARARGS, NULL}, { (char *)"ColorEntry_c1_set", _wrap_ColorEntry_c1_set, METH_VARARGS, (char *)"ColorEntry_c1_set(ColorEntry self, short c1)"}, { (char *)"ColorEntry_c1_get", _wrap_ColorEntry_c1_get, METH_VARARGS, (char *)"ColorEntry_c1_get(ColorEntry self) -> short"}, { (char *)"ColorEntry_c2_set", _wrap_ColorEntry_c2_set, METH_VARARGS, (char *)"ColorEntry_c2_set(ColorEntry self, short c2)"}, { (char *)"ColorEntry_c2_get", _wrap_ColorEntry_c2_get, METH_VARARGS, (char *)"ColorEntry_c2_get(ColorEntry self) -> short"}, { (char *)"ColorEntry_c3_set", _wrap_ColorEntry_c3_set, METH_VARARGS, (char *)"ColorEntry_c3_set(ColorEntry self, short c3)"}, { (char *)"ColorEntry_c3_get", _wrap_ColorEntry_c3_get, METH_VARARGS, (char *)"ColorEntry_c3_get(ColorEntry self) -> short"}, { (char *)"ColorEntry_c4_set", _wrap_ColorEntry_c4_set, METH_VARARGS, (char *)"ColorEntry_c4_set(ColorEntry self, short c4)"}, { (char *)"ColorEntry_c4_get", _wrap_ColorEntry_c4_get, METH_VARARGS, (char *)"ColorEntry_c4_get(ColorEntry self) -> short"}, { (char *)"new_ColorEntry", _wrap_new_ColorEntry, METH_VARARGS, (char *)"new_ColorEntry() -> ColorEntry"}, { (char *)"delete_ColorEntry", _wrap_delete_ColorEntry, METH_VARARGS, (char *)"delete_ColorEntry(ColorEntry self)"}, { (char *)"ColorEntry_swigregister", ColorEntry_swigregister, METH_VARARGS, NULL}, { (char *)"GCP_GCPX_set", _wrap_GCP_GCPX_set, METH_VARARGS, (char *)"GCP_GCPX_set(GCP self, double GCPX)"}, { (char *)"GCP_GCPX_get", _wrap_GCP_GCPX_get, METH_VARARGS, (char *)"GCP_GCPX_get(GCP self) -> double"}, { (char *)"GCP_GCPY_set", _wrap_GCP_GCPY_set, METH_VARARGS, (char *)"GCP_GCPY_set(GCP self, double GCPY)"}, { (char *)"GCP_GCPY_get", _wrap_GCP_GCPY_get, METH_VARARGS, (char *)"GCP_GCPY_get(GCP self) -> double"}, { (char *)"GCP_GCPZ_set", _wrap_GCP_GCPZ_set, METH_VARARGS, (char *)"GCP_GCPZ_set(GCP self, double GCPZ)"}, { (char *)"GCP_GCPZ_get", _wrap_GCP_GCPZ_get, METH_VARARGS, (char *)"GCP_GCPZ_get(GCP self) -> double"}, { (char *)"GCP_GCPPixel_set", _wrap_GCP_GCPPixel_set, METH_VARARGS, (char *)"GCP_GCPPixel_set(GCP self, double GCPPixel)"}, { (char *)"GCP_GCPPixel_get", _wrap_GCP_GCPPixel_get, METH_VARARGS, (char *)"GCP_GCPPixel_get(GCP self) -> double"}, { (char *)"GCP_GCPLine_set", _wrap_GCP_GCPLine_set, METH_VARARGS, (char *)"GCP_GCPLine_set(GCP self, double GCPLine)"}, { (char *)"GCP_GCPLine_get", _wrap_GCP_GCPLine_get, METH_VARARGS, (char *)"GCP_GCPLine_get(GCP self) -> double"}, { (char *)"GCP_Info_set", _wrap_GCP_Info_set, METH_VARARGS, (char *)"GCP_Info_set(GCP self, char Info)"}, { (char *)"GCP_Info_get", _wrap_GCP_Info_get, METH_VARARGS, (char *)"GCP_Info_get(GCP self) -> char"}, { (char *)"GCP_Id_set", _wrap_GCP_Id_set, METH_VARARGS, (char *)"GCP_Id_set(GCP self, char Id)"}, { (char *)"GCP_Id_get", _wrap_GCP_Id_get, METH_VARARGS, (char *)"GCP_Id_get(GCP self) -> char"}, { (char *)"new_GCP", _wrap_new_GCP, METH_VARARGS, (char *)"\n" "new_GCP(double x = 0.0, double y = 0.0, double z = 0.0, double pixel = 0.0, \n" " double line = 0.0, char info = \"\", \n" " char id = \"\") -> GCP\n" ""}, { (char *)"delete_GCP", _wrap_delete_GCP, METH_VARARGS, (char *)"delete_GCP(GCP self)"}, { (char *)"GCP_swigregister", GCP_swigregister, METH_VARARGS, NULL}, { (char *)"GDAL_GCP_GCPX_get", _wrap_GDAL_GCP_GCPX_get, METH_VARARGS, (char *)"GDAL_GCP_GCPX_get(GCP gcp) -> double"}, { (char *)"GDAL_GCP_GCPX_set", _wrap_GDAL_GCP_GCPX_set, METH_VARARGS, (char *)"GDAL_GCP_GCPX_set(GCP gcp, double dfGCPX)"}, { (char *)"GDAL_GCP_GCPY_get", _wrap_GDAL_GCP_GCPY_get, METH_VARARGS, (char *)"GDAL_GCP_GCPY_get(GCP gcp) -> double"}, { (char *)"GDAL_GCP_GCPY_set", _wrap_GDAL_GCP_GCPY_set, METH_VARARGS, (char *)"GDAL_GCP_GCPY_set(GCP gcp, double dfGCPY)"}, { (char *)"GDAL_GCP_GCPZ_get", _wrap_GDAL_GCP_GCPZ_get, METH_VARARGS, (char *)"GDAL_GCP_GCPZ_get(GCP gcp) -> double"}, { (char *)"GDAL_GCP_GCPZ_set", _wrap_GDAL_GCP_GCPZ_set, METH_VARARGS, (char *)"GDAL_GCP_GCPZ_set(GCP gcp, double dfGCPZ)"}, { (char *)"GDAL_GCP_GCPPixel_get", _wrap_GDAL_GCP_GCPPixel_get, METH_VARARGS, (char *)"GDAL_GCP_GCPPixel_get(GCP gcp) -> double"}, { (char *)"GDAL_GCP_GCPPixel_set", _wrap_GDAL_GCP_GCPPixel_set, METH_VARARGS, (char *)"GDAL_GCP_GCPPixel_set(GCP gcp, double dfGCPPixel)"}, { (char *)"GDAL_GCP_GCPLine_get", _wrap_GDAL_GCP_GCPLine_get, METH_VARARGS, (char *)"GDAL_GCP_GCPLine_get(GCP gcp) -> double"}, { (char *)"GDAL_GCP_GCPLine_set", _wrap_GDAL_GCP_GCPLine_set, METH_VARARGS, (char *)"GDAL_GCP_GCPLine_set(GCP gcp, double dfGCPLine)"}, { (char *)"GDAL_GCP_Info_get", _wrap_GDAL_GCP_Info_get, METH_VARARGS, (char *)"GDAL_GCP_Info_get(GCP gcp) -> char"}, { (char *)"GDAL_GCP_Info_set", _wrap_GDAL_GCP_Info_set, METH_VARARGS, (char *)"GDAL_GCP_Info_set(GCP gcp, char pszInfo)"}, { (char *)"GDAL_GCP_Id_get", _wrap_GDAL_GCP_Id_get, METH_VARARGS, (char *)"GDAL_GCP_Id_get(GCP gcp) -> char"}, { (char *)"GDAL_GCP_Id_set", _wrap_GDAL_GCP_Id_set, METH_VARARGS, (char *)"GDAL_GCP_Id_set(GCP gcp, char pszId)"}, { (char *)"GDAL_GCP_get_GCPX", _wrap_GDAL_GCP_get_GCPX, METH_VARARGS, (char *)"GDAL_GCP_get_GCPX(GCP gcp) -> double"}, { (char *)"GDAL_GCP_set_GCPX", _wrap_GDAL_GCP_set_GCPX, METH_VARARGS, (char *)"GDAL_GCP_set_GCPX(GCP gcp, double dfGCPX)"}, { (char *)"GDAL_GCP_get_GCPY", _wrap_GDAL_GCP_get_GCPY, METH_VARARGS, (char *)"GDAL_GCP_get_GCPY(GCP gcp) -> double"}, { (char *)"GDAL_GCP_set_GCPY", _wrap_GDAL_GCP_set_GCPY, METH_VARARGS, (char *)"GDAL_GCP_set_GCPY(GCP gcp, double dfGCPY)"}, { (char *)"GDAL_GCP_get_GCPZ", _wrap_GDAL_GCP_get_GCPZ, METH_VARARGS, (char *)"GDAL_GCP_get_GCPZ(GCP gcp) -> double"}, { (char *)"GDAL_GCP_set_GCPZ", _wrap_GDAL_GCP_set_GCPZ, METH_VARARGS, (char *)"GDAL_GCP_set_GCPZ(GCP gcp, double dfGCPZ)"}, { (char *)"GDAL_GCP_get_GCPPixel", _wrap_GDAL_GCP_get_GCPPixel, METH_VARARGS, (char *)"GDAL_GCP_get_GCPPixel(GCP gcp) -> double"}, { (char *)"GDAL_GCP_set_GCPPixel", _wrap_GDAL_GCP_set_GCPPixel, METH_VARARGS, (char *)"GDAL_GCP_set_GCPPixel(GCP gcp, double dfGCPPixel)"}, { (char *)"GDAL_GCP_get_GCPLine", _wrap_GDAL_GCP_get_GCPLine, METH_VARARGS, (char *)"GDAL_GCP_get_GCPLine(GCP gcp) -> double"}, { (char *)"GDAL_GCP_set_GCPLine", _wrap_GDAL_GCP_set_GCPLine, METH_VARARGS, (char *)"GDAL_GCP_set_GCPLine(GCP gcp, double dfGCPLine)"}, { (char *)"GDAL_GCP_get_Info", _wrap_GDAL_GCP_get_Info, METH_VARARGS, (char *)"GDAL_GCP_get_Info(GCP gcp) -> char"}, { (char *)"GDAL_GCP_set_Info", _wrap_GDAL_GCP_set_Info, METH_VARARGS, (char *)"GDAL_GCP_set_Info(GCP gcp, char pszInfo)"}, { (char *)"GDAL_GCP_get_Id", _wrap_GDAL_GCP_get_Id, METH_VARARGS, (char *)"GDAL_GCP_get_Id(GCP gcp) -> char"}, { (char *)"GDAL_GCP_set_Id", _wrap_GDAL_GCP_set_Id, METH_VARARGS, (char *)"GDAL_GCP_set_Id(GCP gcp, char pszId)"}, { (char *)"GCPsToGeoTransform", _wrap_GCPsToGeoTransform, METH_VARARGS, (char *)"GCPsToGeoTransform(int nGCPs, int bApproxOK = 1) -> RETURN_NONE"}, { (char *)"delete_VirtualMem", _wrap_delete_VirtualMem, METH_VARARGS, (char *)"delete_VirtualMem(VirtualMem self)"}, { (char *)"VirtualMem_GetAddr", _wrap_VirtualMem_GetAddr, METH_VARARGS, (char *)"VirtualMem_GetAddr(VirtualMem self)"}, { (char *)"VirtualMem_Pin", _wrap_VirtualMem_Pin, METH_VARARGS, (char *)"\n" "VirtualMem_Pin(VirtualMem self, size_t start_offset = 0, size_t nsize = 0, \n" " int bWriteOp = 0)\n" ""}, { (char *)"VirtualMem_swigregister", VirtualMem_swigregister, METH_VARARGS, NULL}, { (char *)"delete_AsyncReader", _wrap_delete_AsyncReader, METH_VARARGS, (char *)"delete_AsyncReader(AsyncReader self)"}, { (char *)"AsyncReader_GetNextUpdatedRegion", _wrap_AsyncReader_GetNextUpdatedRegion, METH_VARARGS, (char *)"AsyncReader_GetNextUpdatedRegion(AsyncReader self, double timeout) -> GDALAsyncStatusType"}, { (char *)"AsyncReader_GetBuffer", _wrap_AsyncReader_GetBuffer, METH_VARARGS, (char *)"AsyncReader_GetBuffer(AsyncReader self)"}, { (char *)"AsyncReader_LockBuffer", _wrap_AsyncReader_LockBuffer, METH_VARARGS, (char *)"AsyncReader_LockBuffer(AsyncReader self, double timeout) -> int"}, { (char *)"AsyncReader_UnlockBuffer", _wrap_AsyncReader_UnlockBuffer, METH_VARARGS, (char *)"AsyncReader_UnlockBuffer(AsyncReader self)"}, { (char *)"AsyncReader_swigregister", AsyncReader_swigregister, METH_VARARGS, NULL}, { (char *)"Dataset_RasterXSize_get", _wrap_Dataset_RasterXSize_get, METH_VARARGS, (char *)"Dataset_RasterXSize_get(Dataset self) -> int"}, { (char *)"Dataset_RasterYSize_get", _wrap_Dataset_RasterYSize_get, METH_VARARGS, (char *)"Dataset_RasterYSize_get(Dataset self) -> int"}, { (char *)"Dataset_RasterCount_get", _wrap_Dataset_RasterCount_get, METH_VARARGS, (char *)"Dataset_RasterCount_get(Dataset self) -> int"}, { (char *)"delete_Dataset", _wrap_delete_Dataset, METH_VARARGS, (char *)"delete_Dataset(Dataset self)"}, { (char *)"Dataset_GetDriver", _wrap_Dataset_GetDriver, METH_VARARGS, (char *)"Dataset_GetDriver(Dataset self) -> Driver"}, { (char *)"Dataset_GetRasterBand", _wrap_Dataset_GetRasterBand, METH_VARARGS, (char *)"Dataset_GetRasterBand(Dataset self, int nBand) -> Band"}, { (char *)"Dataset_GetProjection", _wrap_Dataset_GetProjection, METH_VARARGS, (char *)"Dataset_GetProjection(Dataset self) -> char"}, { (char *)"Dataset_GetProjectionRef", _wrap_Dataset_GetProjectionRef, METH_VARARGS, (char *)"Dataset_GetProjectionRef(Dataset self) -> char"}, { (char *)"Dataset_SetProjection", _wrap_Dataset_SetProjection, METH_VARARGS, (char *)"Dataset_SetProjection(Dataset self, char prj) -> CPLErr"}, { (char *)"Dataset_GetGeoTransform", (PyCFunction) _wrap_Dataset_GetGeoTransform, METH_VARARGS | METH_KEYWORDS, (char *)"Dataset_GetGeoTransform(Dataset self, int can_return_null = None)"}, { (char *)"Dataset_SetGeoTransform", _wrap_Dataset_SetGeoTransform, METH_VARARGS, (char *)"Dataset_SetGeoTransform(Dataset self, double argin) -> CPLErr"}, { (char *)"Dataset_BuildOverviews", (PyCFunction) _wrap_Dataset_BuildOverviews, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Dataset_BuildOverviews(Dataset self, char resampling = \"NEAREST\", int overviewlist = 0, \n" " GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"Dataset_GetGCPCount", _wrap_Dataset_GetGCPCount, METH_VARARGS, (char *)"Dataset_GetGCPCount(Dataset self) -> int"}, { (char *)"Dataset_GetGCPProjection", _wrap_Dataset_GetGCPProjection, METH_VARARGS, (char *)"Dataset_GetGCPProjection(Dataset self) -> char"}, { (char *)"Dataset_GetGCPs", _wrap_Dataset_GetGCPs, METH_VARARGS, (char *)"Dataset_GetGCPs(Dataset self)"}, { (char *)"Dataset_SetGCPs", _wrap_Dataset_SetGCPs, METH_VARARGS, (char *)"Dataset_SetGCPs(Dataset self, int nGCPs, char pszGCPProjection) -> CPLErr"}, { (char *)"Dataset_FlushCache", _wrap_Dataset_FlushCache, METH_VARARGS, (char *)"Dataset_FlushCache(Dataset self)"}, { (char *)"Dataset_AddBand", (PyCFunction) _wrap_Dataset_AddBand, METH_VARARGS | METH_KEYWORDS, (char *)"Dataset_AddBand(Dataset self, GDALDataType datatype = GDT_Byte, char options = None) -> CPLErr"}, { (char *)"Dataset_CreateMaskBand", _wrap_Dataset_CreateMaskBand, METH_VARARGS, (char *)"Dataset_CreateMaskBand(Dataset self, int nFlags) -> CPLErr"}, { (char *)"Dataset_GetFileList", _wrap_Dataset_GetFileList, METH_VARARGS, (char *)"Dataset_GetFileList(Dataset self) -> char"}, { (char *)"Dataset_WriteRaster", (PyCFunction) _wrap_Dataset_WriteRaster, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Dataset_WriteRaster(Dataset self, int xoff, int yoff, int xsize, int ysize, \n" " GIntBig buf_len, int buf_xsize = None, int buf_ysize = None, \n" " GDALDataType buf_type = None, \n" " int band_list = 0, int buf_pixel_space = None, \n" " int buf_line_space = None, int buf_band_space = None) -> CPLErr\n" ""}, { (char *)"Dataset_BeginAsyncReader", (PyCFunction) _wrap_Dataset_BeginAsyncReader, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Dataset_BeginAsyncReader(Dataset self, int xOff, int yOff, int xSize, int ySize, \n" " int buf_len, int buf_xsize, int buf_ysize, \n" " GDALDataType bufType = (GDALDataType) 0, int band_list = 0, \n" " int nPixelSpace = 0, int nLineSpace = 0, \n" " int nBandSpace = 0, char options = None) -> AsyncReader\n" ""}, { (char *)"Dataset_EndAsyncReader", _wrap_Dataset_EndAsyncReader, METH_VARARGS, (char *)"Dataset_EndAsyncReader(Dataset self, AsyncReader ario)"}, { (char *)"Dataset_GetVirtualMem", (PyCFunction) _wrap_Dataset_GetVirtualMem, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Dataset_GetVirtualMem(Dataset self, GDALRWFlag eRWFlag, int nXOff, int nYOff, \n" " int nXSize, int nYSize, int nBufXSize, int nBufYSize, \n" " GDALDataType eBufType, int band_list, \n" " int bIsBandSequential, size_t nCacheSize, \n" " size_t nPageSizeHint, char options = None) -> VirtualMem\n" ""}, { (char *)"Dataset_GetTiledVirtualMem", (PyCFunction) _wrap_Dataset_GetTiledVirtualMem, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Dataset_GetTiledVirtualMem(Dataset self, GDALRWFlag eRWFlag, int nXOff, int nYOff, \n" " int nXSize, int nYSize, int nTileXSize, \n" " int nTileYSize, GDALDataType eBufType, int band_list, \n" " GDALTileOrganization eTileOrganization, \n" " size_t nCacheSize, char options = None) -> VirtualMem\n" ""}, { (char *)"Dataset_ReadRaster1", (PyCFunction) _wrap_Dataset_ReadRaster1, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Dataset_ReadRaster1(Dataset self, int xoff, int yoff, int xsize, int ysize, \n" " int buf_xsize = None, int buf_ysize = None, \n" " GDALDataType buf_type = None, int band_list = 0, \n" " int buf_pixel_space = None, int buf_line_space = None, \n" " int buf_band_space = None) -> CPLErr\n" ""}, { (char *)"Dataset_swigregister", Dataset_swigregister, METH_VARARGS, NULL}, { (char *)"Band_XSize_get", _wrap_Band_XSize_get, METH_VARARGS, (char *)"Band_XSize_get(Band self) -> int"}, { (char *)"Band_YSize_get", _wrap_Band_YSize_get, METH_VARARGS, (char *)"Band_YSize_get(Band self) -> int"}, { (char *)"Band_DataType_get", _wrap_Band_DataType_get, METH_VARARGS, (char *)"Band_DataType_get(Band self) -> GDALDataType"}, { (char *)"Band_GetBand", _wrap_Band_GetBand, METH_VARARGS, (char *)"Band_GetBand(Band self) -> int"}, { (char *)"Band_GetBlockSize", _wrap_Band_GetBlockSize, METH_VARARGS, (char *)"Band_GetBlockSize(Band self)"}, { (char *)"Band_GetColorInterpretation", _wrap_Band_GetColorInterpretation, METH_VARARGS, (char *)"Band_GetColorInterpretation(Band self) -> GDALColorInterp"}, { (char *)"Band_GetRasterColorInterpretation", _wrap_Band_GetRasterColorInterpretation, METH_VARARGS, (char *)"Band_GetRasterColorInterpretation(Band self) -> GDALColorInterp"}, { (char *)"Band_SetColorInterpretation", _wrap_Band_SetColorInterpretation, METH_VARARGS, (char *)"Band_SetColorInterpretation(Band self, GDALColorInterp val) -> CPLErr"}, { (char *)"Band_SetRasterColorInterpretation", _wrap_Band_SetRasterColorInterpretation, METH_VARARGS, (char *)"Band_SetRasterColorInterpretation(Band self, GDALColorInterp val) -> CPLErr"}, { (char *)"Band_GetNoDataValue", _wrap_Band_GetNoDataValue, METH_VARARGS, (char *)"Band_GetNoDataValue(Band self)"}, { (char *)"Band_SetNoDataValue", _wrap_Band_SetNoDataValue, METH_VARARGS, (char *)"Band_SetNoDataValue(Band self, double d) -> CPLErr"}, { (char *)"Band_GetUnitType", _wrap_Band_GetUnitType, METH_VARARGS, (char *)"Band_GetUnitType(Band self) -> char"}, { (char *)"Band_SetUnitType", _wrap_Band_SetUnitType, METH_VARARGS, (char *)"Band_SetUnitType(Band self, char val) -> CPLErr"}, { (char *)"Band_GetRasterCategoryNames", _wrap_Band_GetRasterCategoryNames, METH_VARARGS, (char *)"Band_GetRasterCategoryNames(Band self) -> char"}, { (char *)"Band_SetRasterCategoryNames", _wrap_Band_SetRasterCategoryNames, METH_VARARGS, (char *)"Band_SetRasterCategoryNames(Band self, char names) -> CPLErr"}, { (char *)"Band_GetMinimum", _wrap_Band_GetMinimum, METH_VARARGS, (char *)"Band_GetMinimum(Band self)"}, { (char *)"Band_GetMaximum", _wrap_Band_GetMaximum, METH_VARARGS, (char *)"Band_GetMaximum(Band self)"}, { (char *)"Band_GetOffset", _wrap_Band_GetOffset, METH_VARARGS, (char *)"Band_GetOffset(Band self)"}, { (char *)"Band_GetScale", _wrap_Band_GetScale, METH_VARARGS, (char *)"Band_GetScale(Band self)"}, { (char *)"Band_SetOffset", _wrap_Band_SetOffset, METH_VARARGS, (char *)"Band_SetOffset(Band self, double val) -> CPLErr"}, { (char *)"Band_SetScale", _wrap_Band_SetScale, METH_VARARGS, (char *)"Band_SetScale(Band self, double val) -> CPLErr"}, { (char *)"Band_GetStatistics", _wrap_Band_GetStatistics, METH_VARARGS, (char *)"Band_GetStatistics(Band self, int approx_ok, int force) -> CPLErr"}, { (char *)"Band_ComputeStatistics", _wrap_Band_ComputeStatistics, METH_VARARGS, (char *)"\n" "Band_ComputeStatistics(Band self, bool approx_ok, GDALProgressFunc callback = None, \n" " void callback_data = None) -> CPLErr\n" ""}, { (char *)"Band_SetStatistics", _wrap_Band_SetStatistics, METH_VARARGS, (char *)"Band_SetStatistics(Band self, double min, double max, double mean, double stddev) -> CPLErr"}, { (char *)"Band_GetOverviewCount", _wrap_Band_GetOverviewCount, METH_VARARGS, (char *)"Band_GetOverviewCount(Band self) -> int"}, { (char *)"Band_GetOverview", _wrap_Band_GetOverview, METH_VARARGS, (char *)"Band_GetOverview(Band self, int i) -> Band"}, { (char *)"Band_Checksum", (PyCFunction) _wrap_Band_Checksum, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_Checksum(Band self, int xoff = 0, int yoff = 0, int xsize = None, \n" " int ysize = None) -> int\n" ""}, { (char *)"Band_ComputeRasterMinMax", _wrap_Band_ComputeRasterMinMax, METH_VARARGS, (char *)"Band_ComputeRasterMinMax(Band self, int approx_ok = 0)"}, { (char *)"Band_ComputeBandStats", _wrap_Band_ComputeBandStats, METH_VARARGS, (char *)"Band_ComputeBandStats(Band self, int samplestep = 1)"}, { (char *)"Band_Fill", _wrap_Band_Fill, METH_VARARGS, (char *)"Band_Fill(Band self, double real_fill, double imag_fill = 0.0) -> CPLErr"}, { (char *)"Band_WriteRaster", (PyCFunction) _wrap_Band_WriteRaster, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_WriteRaster(Band self, int xoff, int yoff, int xsize, int ysize, \n" " GIntBig buf_len, int buf_xsize = None, int buf_ysize = None, \n" " int buf_type = None, int buf_pixel_space = None, \n" " int buf_line_space = None) -> CPLErr\n" ""}, { (char *)"Band_FlushCache", _wrap_Band_FlushCache, METH_VARARGS, (char *)"Band_FlushCache(Band self)"}, { (char *)"Band_GetRasterColorTable", _wrap_Band_GetRasterColorTable, METH_VARARGS, (char *)"Band_GetRasterColorTable(Band self) -> ColorTable"}, { (char *)"Band_GetColorTable", _wrap_Band_GetColorTable, METH_VARARGS, (char *)"Band_GetColorTable(Band self) -> ColorTable"}, { (char *)"Band_SetRasterColorTable", _wrap_Band_SetRasterColorTable, METH_VARARGS, (char *)"Band_SetRasterColorTable(Band self, ColorTable arg) -> int"}, { (char *)"Band_SetColorTable", _wrap_Band_SetColorTable, METH_VARARGS, (char *)"Band_SetColorTable(Band self, ColorTable arg) -> int"}, { (char *)"Band_GetDefaultRAT", _wrap_Band_GetDefaultRAT, METH_VARARGS, (char *)"Band_GetDefaultRAT(Band self) -> RasterAttributeTable"}, { (char *)"Band_SetDefaultRAT", _wrap_Band_SetDefaultRAT, METH_VARARGS, (char *)"Band_SetDefaultRAT(Band self, RasterAttributeTable table) -> int"}, { (char *)"Band_GetMaskBand", _wrap_Band_GetMaskBand, METH_VARARGS, (char *)"Band_GetMaskBand(Band self) -> Band"}, { (char *)"Band_GetMaskFlags", _wrap_Band_GetMaskFlags, METH_VARARGS, (char *)"Band_GetMaskFlags(Band self) -> int"}, { (char *)"Band_CreateMaskBand", _wrap_Band_CreateMaskBand, METH_VARARGS, (char *)"Band_CreateMaskBand(Band self, int nFlags) -> CPLErr"}, { (char *)"Band_GetHistogram", (PyCFunction) _wrap_Band_GetHistogram, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_GetHistogram(Band self, double min = -0.5, double max = 255.5, int buckets = 256, \n" " int include_out_of_range = 0, \n" " int approx_ok = 1, GDALProgressFunc callback = None, \n" " void callback_data = None) -> CPLErr\n" ""}, { (char *)"Band_GetDefaultHistogram", (PyCFunction) _wrap_Band_GetDefaultHistogram, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_GetDefaultHistogram(Band self, double min_ret = None, double max_ret = None, \n" " int buckets_ret = None, int ppanHistogram = None, \n" " int force = 1, GDALProgressFunc callback = None, \n" " void callback_data = None) -> CPLErr\n" ""}, { (char *)"Band_SetDefaultHistogram", _wrap_Band_SetDefaultHistogram, METH_VARARGS, (char *)"Band_SetDefaultHistogram(Band self, double min, double max, int buckets_in) -> CPLErr"}, { (char *)"Band_HasArbitraryOverviews", _wrap_Band_HasArbitraryOverviews, METH_VARARGS, (char *)"Band_HasArbitraryOverviews(Band self) -> bool"}, { (char *)"Band_GetCategoryNames", _wrap_Band_GetCategoryNames, METH_VARARGS, (char *)"Band_GetCategoryNames(Band self) -> char"}, { (char *)"Band_SetCategoryNames", _wrap_Band_SetCategoryNames, METH_VARARGS, (char *)"Band_SetCategoryNames(Band self, char papszCategoryNames) -> CPLErr"}, { (char *)"Band_GetVirtualMem", (PyCFunction) _wrap_Band_GetVirtualMem, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_GetVirtualMem(Band self, GDALRWFlag eRWFlag, int nXOff, int nYOff, \n" " int nXSize, int nYSize, int nBufXSize, int nBufYSize, \n" " GDALDataType eBufType, size_t nCacheSize, \n" " size_t nPageSizeHint, char options = None) -> VirtualMem\n" ""}, { (char *)"Band_GetVirtualMemAuto", (PyCFunction) _wrap_Band_GetVirtualMemAuto, METH_VARARGS | METH_KEYWORDS, (char *)"Band_GetVirtualMemAuto(Band self, GDALRWFlag eRWFlag, char options = None) -> VirtualMem"}, { (char *)"Band_GetTiledVirtualMem", (PyCFunction) _wrap_Band_GetTiledVirtualMem, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_GetTiledVirtualMem(Band self, GDALRWFlag eRWFlag, int nXOff, int nYOff, \n" " int nXSize, int nYSize, int nTileXSize, int nTileYSize, \n" " GDALDataType eBufType, size_t nCacheSize, \n" " char options = None) -> VirtualMem\n" ""}, { (char *)"Band_ReadRaster1", (PyCFunction) _wrap_Band_ReadRaster1, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Band_ReadRaster1(Band self, int xoff, int yoff, int xsize, int ysize, \n" " int buf_xsize = None, int buf_ysize = None, \n" " int buf_type = None, int buf_pixel_space = None, \n" " int buf_line_space = None) -> CPLErr\n" ""}, { (char *)"Band_ReadBlock", (PyCFunction) _wrap_Band_ReadBlock, METH_VARARGS | METH_KEYWORDS, (char *)"Band_ReadBlock(Band self, int xoff, int yoff) -> CPLErr"}, { (char *)"Band_swigregister", Band_swigregister, METH_VARARGS, NULL}, { (char *)"new_ColorTable", (PyCFunction) _wrap_new_ColorTable, METH_VARARGS | METH_KEYWORDS, (char *)"new_ColorTable(GDALPaletteInterp palette = GPI_RGB) -> ColorTable"}, { (char *)"delete_ColorTable", _wrap_delete_ColorTable, METH_VARARGS, (char *)"delete_ColorTable(ColorTable self)"}, { (char *)"ColorTable_Clone", _wrap_ColorTable_Clone, METH_VARARGS, (char *)"ColorTable_Clone(ColorTable self) -> ColorTable"}, { (char *)"ColorTable_GetPaletteInterpretation", _wrap_ColorTable_GetPaletteInterpretation, METH_VARARGS, (char *)"ColorTable_GetPaletteInterpretation(ColorTable self) -> GDALPaletteInterp"}, { (char *)"ColorTable_GetCount", _wrap_ColorTable_GetCount, METH_VARARGS, (char *)"ColorTable_GetCount(ColorTable self) -> int"}, { (char *)"ColorTable_GetColorEntry", _wrap_ColorTable_GetColorEntry, METH_VARARGS, (char *)"ColorTable_GetColorEntry(ColorTable self, int entry) -> ColorEntry"}, { (char *)"ColorTable_GetColorEntryAsRGB", _wrap_ColorTable_GetColorEntryAsRGB, METH_VARARGS, (char *)"ColorTable_GetColorEntryAsRGB(ColorTable self, int entry, ColorEntry centry) -> int"}, { (char *)"ColorTable_SetColorEntry", _wrap_ColorTable_SetColorEntry, METH_VARARGS, (char *)"ColorTable_SetColorEntry(ColorTable self, int entry, ColorEntry centry)"}, { (char *)"ColorTable_CreateColorRamp", _wrap_ColorTable_CreateColorRamp, METH_VARARGS, (char *)"\n" "ColorTable_CreateColorRamp(ColorTable self, int nStartIndex, ColorEntry startcolor, \n" " int nEndIndex, ColorEntry endcolor)\n" ""}, { (char *)"ColorTable_swigregister", ColorTable_swigregister, METH_VARARGS, NULL}, { (char *)"new_RasterAttributeTable", _wrap_new_RasterAttributeTable, METH_VARARGS, (char *)"new_RasterAttributeTable() -> RasterAttributeTable"}, { (char *)"delete_RasterAttributeTable", _wrap_delete_RasterAttributeTable, METH_VARARGS, (char *)"delete_RasterAttributeTable(RasterAttributeTable self)"}, { (char *)"RasterAttributeTable_Clone", _wrap_RasterAttributeTable_Clone, METH_VARARGS, (char *)"RasterAttributeTable_Clone(RasterAttributeTable self) -> RasterAttributeTable"}, { (char *)"RasterAttributeTable_GetColumnCount", _wrap_RasterAttributeTable_GetColumnCount, METH_VARARGS, (char *)"RasterAttributeTable_GetColumnCount(RasterAttributeTable self) -> int"}, { (char *)"RasterAttributeTable_GetNameOfCol", _wrap_RasterAttributeTable_GetNameOfCol, METH_VARARGS, (char *)"RasterAttributeTable_GetNameOfCol(RasterAttributeTable self, int iCol) -> char"}, { (char *)"RasterAttributeTable_GetUsageOfCol", _wrap_RasterAttributeTable_GetUsageOfCol, METH_VARARGS, (char *)"RasterAttributeTable_GetUsageOfCol(RasterAttributeTable self, int iCol) -> GDALRATFieldUsage"}, { (char *)"RasterAttributeTable_GetTypeOfCol", _wrap_RasterAttributeTable_GetTypeOfCol, METH_VARARGS, (char *)"RasterAttributeTable_GetTypeOfCol(RasterAttributeTable self, int iCol) -> GDALRATFieldType"}, { (char *)"RasterAttributeTable_GetColOfUsage", _wrap_RasterAttributeTable_GetColOfUsage, METH_VARARGS, (char *)"RasterAttributeTable_GetColOfUsage(RasterAttributeTable self, GDALRATFieldUsage eUsage) -> int"}, { (char *)"RasterAttributeTable_GetRowCount", _wrap_RasterAttributeTable_GetRowCount, METH_VARARGS, (char *)"RasterAttributeTable_GetRowCount(RasterAttributeTable self) -> int"}, { (char *)"RasterAttributeTable_GetValueAsString", _wrap_RasterAttributeTable_GetValueAsString, METH_VARARGS, (char *)"RasterAttributeTable_GetValueAsString(RasterAttributeTable self, int iRow, int iCol) -> char"}, { (char *)"RasterAttributeTable_GetValueAsInt", _wrap_RasterAttributeTable_GetValueAsInt, METH_VARARGS, (char *)"RasterAttributeTable_GetValueAsInt(RasterAttributeTable self, int iRow, int iCol) -> int"}, { (char *)"RasterAttributeTable_GetValueAsDouble", _wrap_RasterAttributeTable_GetValueAsDouble, METH_VARARGS, (char *)"RasterAttributeTable_GetValueAsDouble(RasterAttributeTable self, int iRow, int iCol) -> double"}, { (char *)"RasterAttributeTable_SetValueAsString", _wrap_RasterAttributeTable_SetValueAsString, METH_VARARGS, (char *)"RasterAttributeTable_SetValueAsString(RasterAttributeTable self, int iRow, int iCol, char pszValue)"}, { (char *)"RasterAttributeTable_SetValueAsInt", _wrap_RasterAttributeTable_SetValueAsInt, METH_VARARGS, (char *)"RasterAttributeTable_SetValueAsInt(RasterAttributeTable self, int iRow, int iCol, int nValue)"}, { (char *)"RasterAttributeTable_SetValueAsDouble", _wrap_RasterAttributeTable_SetValueAsDouble, METH_VARARGS, (char *)"RasterAttributeTable_SetValueAsDouble(RasterAttributeTable self, int iRow, int iCol, double dfValue)"}, { (char *)"RasterAttributeTable_SetRowCount", _wrap_RasterAttributeTable_SetRowCount, METH_VARARGS, (char *)"RasterAttributeTable_SetRowCount(RasterAttributeTable self, int nCount)"}, { (char *)"RasterAttributeTable_CreateColumn", _wrap_RasterAttributeTable_CreateColumn, METH_VARARGS, (char *)"\n" "RasterAttributeTable_CreateColumn(RasterAttributeTable self, char pszName, GDALRATFieldType eType, \n" " GDALRATFieldUsage eUsage) -> int\n" ""}, { (char *)"RasterAttributeTable_GetLinearBinning", _wrap_RasterAttributeTable_GetLinearBinning, METH_VARARGS, (char *)"RasterAttributeTable_GetLinearBinning(RasterAttributeTable self) -> bool"}, { (char *)"RasterAttributeTable_SetLinearBinning", _wrap_RasterAttributeTable_SetLinearBinning, METH_VARARGS, (char *)"RasterAttributeTable_SetLinearBinning(RasterAttributeTable self, double dfRow0Min, double dfBinSize) -> int"}, { (char *)"RasterAttributeTable_GetRowOfValue", _wrap_RasterAttributeTable_GetRowOfValue, METH_VARARGS, (char *)"RasterAttributeTable_GetRowOfValue(RasterAttributeTable self, double dfValue) -> int"}, { (char *)"RasterAttributeTable_ChangesAreWrittenToFile", _wrap_RasterAttributeTable_ChangesAreWrittenToFile, METH_VARARGS, (char *)"RasterAttributeTable_ChangesAreWrittenToFile(RasterAttributeTable self) -> int"}, { (char *)"RasterAttributeTable_swigregister", RasterAttributeTable_swigregister, METH_VARARGS, NULL}, { (char *)"TermProgress_nocb", (PyCFunction) _wrap_TermProgress_nocb, METH_VARARGS | METH_KEYWORDS, (char *)"TermProgress_nocb(double dfProgress, char pszMessage = None, void pData = None) -> int"}, { (char *)"ComputeMedianCutPCT", (PyCFunction) _wrap_ComputeMedianCutPCT, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "ComputeMedianCutPCT(Band red, Band green, Band blue, int num_colors, ColorTable colors, \n" " GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"DitherRGB2PCT", (PyCFunction) _wrap_DitherRGB2PCT, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "DitherRGB2PCT(Band red, Band green, Band blue, Band target, ColorTable colors, \n" " GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"ReprojectImage", _wrap_ReprojectImage, METH_VARARGS, (char *)"\n" "ReprojectImage(Dataset src_ds, Dataset dst_ds, char src_wkt = None, \n" " char dst_wkt = None, GDALResampleAlg eResampleAlg = GRA_NearestNeighbour, \n" " double WarpMemoryLimit = 0.0, \n" " double maxerror = 0.0, GDALProgressFunc callback = None, \n" " void callback_data = None) -> CPLErr\n" ""}, { (char *)"ComputeProximity", (PyCFunction) _wrap_ComputeProximity, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "ComputeProximity(Band srcBand, Band proximityBand, char options = None, \n" " GDALProgressFunc callback = None, void callback_data = None) -> int\n" ""}, { (char *)"RasterizeLayer", (PyCFunction) _wrap_RasterizeLayer, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "RasterizeLayer(Dataset dataset, int bands, OGRLayerShadow layer, void pfnTransformer = None, \n" " void pTransformArg = None, \n" " int burn_values = 0, char options = None, \n" " GDALProgressFunc callback = None, void callback_data = None) -> int\n" ""}, { (char *)"Polygonize", (PyCFunction) _wrap_Polygonize, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Polygonize(Band srcBand, Band maskBand, OGRLayerShadow outLayer, \n" " int iPixValField, char options = None, GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"FillNodata", (PyCFunction) _wrap_FillNodata, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "FillNodata(Band targetBand, Band maskBand, double maxSearchDist, \n" " int smoothingIterations, char options = None, \n" " GDALProgressFunc callback = None, void callback_data = None) -> int\n" ""}, { (char *)"SieveFilter", (PyCFunction) _wrap_SieveFilter, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "SieveFilter(Band srcBand, Band maskBand, Band dstBand, int threshold, \n" " int connectedness = 4, char options = None, \n" " GDALProgressFunc callback = None, void callback_data = None) -> int\n" ""}, { (char *)"RegenerateOverviews", (PyCFunction) _wrap_RegenerateOverviews, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "RegenerateOverviews(Band srcBand, int overviewBandCount, char resampling = \"average\", \n" " GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"RegenerateOverview", (PyCFunction) _wrap_RegenerateOverview, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "RegenerateOverview(Band srcBand, Band overviewBand, char resampling = \"average\", \n" " GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"ContourGenerate", (PyCFunction) _wrap_ContourGenerate, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "ContourGenerate(Band srcBand, double contourInterval, double contourBase, \n" " int fixedLevelCount, int useNoData, double noDataValue, \n" " OGRLayerShadow dstLayer, int idField, \n" " int elevField, GDALProgressFunc callback = None, \n" " void callback_data = None) -> int\n" ""}, { (char *)"AutoCreateWarpedVRT", _wrap_AutoCreateWarpedVRT, METH_VARARGS, (char *)"\n" "AutoCreateWarpedVRT(Dataset src_ds, char src_wkt = None, char dst_wkt = None, \n" " GDALResampleAlg eResampleAlg = GRA_NearestNeighbour, \n" " double maxerror = 0.0) -> Dataset\n" ""}, { (char *)"new_Transformer", _wrap_new_Transformer, METH_VARARGS, (char *)"new_Transformer(Dataset src, Dataset dst, char options) -> Transformer"}, { (char *)"delete_Transformer", _wrap_delete_Transformer, METH_VARARGS, (char *)"delete_Transformer(Transformer self)"}, { (char *)"Transformer_TransformPoint", _wrap_Transformer_TransformPoint, METH_VARARGS, (char *)"\n" "TransformPoint(int bDstToSrc, double inout) -> int\n" "Transformer_TransformPoint(Transformer self, int bDstToSrc, double x, double y, \n" " double z = 0.0) -> int\n" ""}, { (char *)"Transformer_TransformPoints", _wrap_Transformer_TransformPoints, METH_VARARGS, (char *)"Transformer_TransformPoints(Transformer self, int bDstToSrc, int nCount) -> int"}, { (char *)"Transformer_TransformGeolocations", (PyCFunction) _wrap_Transformer_TransformGeolocations, METH_VARARGS | METH_KEYWORDS, (char *)"\n" "Transformer_TransformGeolocations(Transformer self, Band xBand, Band yBand, Band zBand, \n" " GDALProgressFunc callback = None, void callback_data = None, \n" " char options = None) -> int\n" ""}, { (char *)"Transformer_swigregister", Transformer_swigregister, METH_VARARGS, NULL}, { (char *)"ApplyGeoTransform", _wrap_ApplyGeoTransform, METH_VARARGS, (char *)"ApplyGeoTransform(double padfGeoTransform, double dfPixel, double dfLine)"}, { (char *)"InvGeoTransform", _wrap_InvGeoTransform, METH_VARARGS, (char *)"InvGeoTransform(double gt_in) -> int"}, { (char *)"VersionInfo", _wrap_VersionInfo, METH_VARARGS, (char *)"VersionInfo(char request = \"VERSION_NUM\") -> char"}, { (char *)"AllRegister", _wrap_AllRegister, METH_VARARGS, (char *)"AllRegister()"}, { (char *)"GDALDestroyDriverManager", _wrap_GDALDestroyDriverManager, METH_VARARGS, (char *)"GDALDestroyDriverManager()"}, { (char *)"GetCacheMax", _wrap_GetCacheMax, METH_VARARGS, (char *)"GetCacheMax() -> GIntBig"}, { (char *)"GetCacheUsed", _wrap_GetCacheUsed, METH_VARARGS, (char *)"GetCacheUsed() -> GIntBig"}, { (char *)"SetCacheMax", _wrap_SetCacheMax, METH_VARARGS, (char *)"SetCacheMax(GIntBig nBytes)"}, { (char *)"GetDataTypeSize", _wrap_GetDataTypeSize, METH_VARARGS, (char *)"GetDataTypeSize(GDALDataType eDataType) -> int"}, { (char *)"DataTypeIsComplex", _wrap_DataTypeIsComplex, METH_VARARGS, (char *)"DataTypeIsComplex(GDALDataType eDataType) -> int"}, { (char *)"GetDataTypeName", _wrap_GetDataTypeName, METH_VARARGS, (char *)"GetDataTypeName(GDALDataType eDataType) -> char"}, { (char *)"GetDataTypeByName", _wrap_GetDataTypeByName, METH_VARARGS, (char *)"GetDataTypeByName(char pszDataTypeName) -> GDALDataType"}, { (char *)"GetColorInterpretationName", _wrap_GetColorInterpretationName, METH_VARARGS, (char *)"GetColorInterpretationName(GDALColorInterp eColorInterp) -> char"}, { (char *)"GetPaletteInterpretationName", _wrap_GetPaletteInterpretationName, METH_VARARGS, (char *)"GetPaletteInterpretationName(GDALPaletteInterp ePaletteInterp) -> char"}, { (char *)"DecToDMS", _wrap_DecToDMS, METH_VARARGS, (char *)"DecToDMS(double arg0, char arg1, int arg2 = 2) -> char"}, { (char *)"PackedDMSToDec", _wrap_PackedDMSToDec, METH_VARARGS, (char *)"PackedDMSToDec(double dfPacked) -> double"}, { (char *)"DecToPackedDMS", _wrap_DecToPackedDMS, METH_VARARGS, (char *)"DecToPackedDMS(double dfDec) -> double"}, { (char *)"ParseXMLString", _wrap_ParseXMLString, METH_VARARGS, (char *)"ParseXMLString(char pszXMLString) -> CPLXMLNode"}, { (char *)"SerializeXMLTree", _wrap_SerializeXMLTree, METH_VARARGS, (char *)"SerializeXMLTree(CPLXMLNode xmlnode) -> retStringAndCPLFree"}, { (char *)"GetDriverCount", _wrap_GetDriverCount, METH_VARARGS, (char *)"GetDriverCount() -> int"}, { (char *)"GetDriverByName", _wrap_GetDriverByName, METH_VARARGS, (char *)"GetDriverByName(char name) -> Driver"}, { (char *)"GetDriver", _wrap_GetDriver, METH_VARARGS, (char *)"GetDriver(int i) -> Driver"}, { (char *)"Open", _wrap_Open, METH_VARARGS, (char *)"Open(char utf8_path, GDALAccess eAccess = GA_ReadOnly) -> Dataset"}, { (char *)"OpenShared", _wrap_OpenShared, METH_VARARGS, (char *)"OpenShared(char utf8_path, GDALAccess eAccess = GA_ReadOnly) -> Dataset"}, { (char *)"IdentifyDriver", _wrap_IdentifyDriver, METH_VARARGS, (char *)"IdentifyDriver(char utf8_path, char papszSiblings = None) -> Driver"}, { (char *)"GeneralCmdLineProcessor", _wrap_GeneralCmdLineProcessor, METH_VARARGS, (char *)"GeneralCmdLineProcessor(char papszArgv, int nOptions = 0) -> char"}, { NULL, NULL, 0, NULL } }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ static void *_p_GDALDriverShadowTo_p_GDALMajorObjectShadow(void *x, int *SWIGUNUSEDPARM(newmemory)) { return (void *)((GDALMajorObjectShadow *) ((GDALDriverShadow *) x)); } static void *_p_GDALDatasetShadowTo_p_GDALMajorObjectShadow(void *x, int *SWIGUNUSEDPARM(newmemory)) { return (void *)((GDALMajorObjectShadow *) ((GDALDatasetShadow *) x)); } static void *_p_GDALRasterBandShadowTo_p_GDALMajorObjectShadow(void *x, int *SWIGUNUSEDPARM(newmemory)) { return (void *)((GDALMajorObjectShadow *) ((GDALRasterBandShadow *) x)); } static swig_type_info _swigt__p_CPLErrorHandler = {"_p_CPLErrorHandler", "CPLErrorHandler *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_CPLVirtualMemShadow = {"_p_CPLVirtualMemShadow", "CPLVirtualMemShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_CPLXMLNode = {"_p_CPLXMLNode", "CPLXMLNode *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GByte = {"_p_GByte", "GByte *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALAsyncReaderShadow = {"_p_GDALAsyncReaderShadow", "GDALAsyncReaderShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALColorEntry = {"_p_GDALColorEntry", "GDALColorEntry *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALColorTableShadow = {"_p_GDALColorTableShadow", "GDALColorTableShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALDatasetShadow = {"_p_GDALDatasetShadow", "GDALDatasetShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALDriverShadow = {"_p_GDALDriverShadow", "GDALDriverShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALMajorObjectShadow = {"_p_GDALMajorObjectShadow", "GDALMajorObjectShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALProgressFunc = {"_p_GDALProgressFunc", "GDALProgressFunc *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALRasterAttributeTableShadow = {"_p_GDALRasterAttributeTableShadow", "GDALRasterAttributeTableShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALRasterBandShadow = {"_p_GDALRasterBandShadow", "GDALRasterBandShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDALTransformerInfoShadow = {"_p_GDALTransformerInfoShadow", "GDALTransformerInfoShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GDAL_GCP = {"_p_GDAL_GCP", "GDAL_GCP *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_GIntBig = {"_p_GIntBig", "GIntBig *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_OGRLayerShadow = {"_p_OGRLayerShadow", "OGRLayerShadow *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_StatBuf = {"_p_StatBuf", "StatBuf *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_char = {"_p_char", "char *|retStringAndCPLFree *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_double = {"_p_double", "double *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_f_double_p_q_const__char_p_void__int = {"_p_f_double_p_q_const__char_p_void__int", "int (*)(double,char const *,void *)", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_int = {"_p_int", "CPLErr *|GDALRATFieldType *|int *|GDALColorInterp *|GDALAccess *|GDALPaletteInterp *|GDALDataType *|GDALAsyncStatusType *|GDALRWFlag *|GDALTileOrganization *|GDALRATFieldUsage *|GDALResampleAlg *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_GDALRasterBandShadow = {"_p_p_GDALRasterBandShadow", "GDALRasterBandShadow **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_GDAL_GCP = {"_p_p_GDAL_GCP", "GDAL_GCP **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_int = {"_p_p_int", "int **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_void = {"_p_void", "VSILFILE *|void *", 0, 0, (void*)0, 0}; static swig_type_info *swig_type_initial[] = { &_swigt__p_CPLErrorHandler, &_swigt__p_CPLVirtualMemShadow, &_swigt__p_CPLXMLNode, &_swigt__p_GByte, &_swigt__p_GDALAsyncReaderShadow, &_swigt__p_GDALColorEntry, &_swigt__p_GDALColorTableShadow, &_swigt__p_GDALDatasetShadow, &_swigt__p_GDALDriverShadow, &_swigt__p_GDALMajorObjectShadow, &_swigt__p_GDALProgressFunc, &_swigt__p_GDALRasterAttributeTableShadow, &_swigt__p_GDALRasterBandShadow, &_swigt__p_GDALTransformerInfoShadow, &_swigt__p_GDAL_GCP, &_swigt__p_GIntBig, &_swigt__p_OGRLayerShadow, &_swigt__p_StatBuf, &_swigt__p_char, &_swigt__p_double, &_swigt__p_f_double_p_q_const__char_p_void__int, &_swigt__p_int, &_swigt__p_p_GDALRasterBandShadow, &_swigt__p_p_GDAL_GCP, &_swigt__p_p_char, &_swigt__p_p_int, &_swigt__p_p_void, &_swigt__p_size_t, &_swigt__p_void, }; static swig_cast_info _swigc__p_CPLErrorHandler[] = { {&_swigt__p_CPLErrorHandler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_CPLVirtualMemShadow[] = { {&_swigt__p_CPLVirtualMemShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_CPLXMLNode[] = { {&_swigt__p_CPLXMLNode, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GByte[] = { {&_swigt__p_GByte, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALAsyncReaderShadow[] = { {&_swigt__p_GDALAsyncReaderShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALColorEntry[] = { {&_swigt__p_GDALColorEntry, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALColorTableShadow[] = { {&_swigt__p_GDALColorTableShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALDatasetShadow[] = { {&_swigt__p_GDALDatasetShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALDriverShadow[] = { {&_swigt__p_GDALDriverShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALMajorObjectShadow[] = { {&_swigt__p_GDALMajorObjectShadow, 0, 0, 0}, {&_swigt__p_GDALDriverShadow, _p_GDALDriverShadowTo_p_GDALMajorObjectShadow, 0, 0}, {&_swigt__p_GDALDatasetShadow, _p_GDALDatasetShadowTo_p_GDALMajorObjectShadow, 0, 0}, {&_swigt__p_GDALRasterBandShadow, _p_GDALRasterBandShadowTo_p_GDALMajorObjectShadow, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALProgressFunc[] = { {&_swigt__p_GDALProgressFunc, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALRasterAttributeTableShadow[] = { {&_swigt__p_GDALRasterAttributeTableShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALRasterBandShadow[] = { {&_swigt__p_GDALRasterBandShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDALTransformerInfoShadow[] = { {&_swigt__p_GDALTransformerInfoShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GDAL_GCP[] = { {&_swigt__p_GDAL_GCP, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_GIntBig[] = { {&_swigt__p_GIntBig, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_OGRLayerShadow[] = { {&_swigt__p_OGRLayerShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_StatBuf[] = { {&_swigt__p_StatBuf, 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_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_f_double_p_q_const__char_p_void__int[] = { {&_swigt__p_f_double_p_q_const__char_p_void__int, 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_p_GDALRasterBandShadow[] = { {&_swigt__p_p_GDALRasterBandShadow, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_GDAL_GCP[] = { {&_swigt__p_p_GDAL_GCP, 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_int[] = { {&_swigt__p_p_int, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_p_void[] = { {&_swigt__p_p_void, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_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 *swig_cast_initial[] = { _swigc__p_CPLErrorHandler, _swigc__p_CPLVirtualMemShadow, _swigc__p_CPLXMLNode, _swigc__p_GByte, _swigc__p_GDALAsyncReaderShadow, _swigc__p_GDALColorEntry, _swigc__p_GDALColorTableShadow, _swigc__p_GDALDatasetShadow, _swigc__p_GDALDriverShadow, _swigc__p_GDALMajorObjectShadow, _swigc__p_GDALProgressFunc, _swigc__p_GDALRasterAttributeTableShadow, _swigc__p_GDALRasterBandShadow, _swigc__p_GDALTransformerInfoShadow, _swigc__p_GDAL_GCP, _swigc__p_GIntBig, _swigc__p_OGRLayerShadow, _swigc__p_StatBuf, _swigc__p_char, _swigc__p_double, _swigc__p_f_double_p_q_const__char_p_void__int, _swigc__p_int, _swigc__p_p_GDALRasterBandShadow, _swigc__p_p_GDAL_GCP, _swigc__p_p_char, _swigc__p_p_int, _swigc__p_p_void, _swigc__p_size_t, _swigc__p_void, }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ static swig_const_info swig_const_table[] = { { SWIG_PY_POINTER, (char*)"TermProgress", 0, 0, (void *)((int (*)(double,char const *,void *))(GDALTermProgress)), &SWIGTYPE_p_f_double_p_q_const__char_p_void__int }, {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 through 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" { #if 0 } /* c-mode */ #endif #endif #if 0 #define SWIGRUNTIME_DEBUG #endif SWIGRUNTIME void SWIG_InitializeModule(void *clientdata) { size_t i; swig_module_info *module_head, *iter; int found, init; clientdata = clientdata; /* check to see if the circular list has been setup, if not, set it up */ if (swig_module.next==0) { /* Initialize the swig_module */ swig_module.type_initial = swig_type_initial; swig_module.cast_initial = swig_cast_initial; swig_module.next = &swig_module; init = 1; } else { init = 0; } /* Try and load any already created modules */ module_head = SWIG_GetModule(clientdata); if (!module_head) { /* This is the first module loaded for this interpreter */ /* so set the swig module into the interpreter */ SWIG_SetModule(clientdata, &swig_module); module_head = &swig_module; } else { /* the interpreter has loaded a SWIG module, but has it loaded this one? */ found=0; iter=module_head; do { if (iter==&swig_module) { found=1; break; } iter=iter->next; } while (iter!= module_head); /* if the is found in the list, then all is done and we may leave */ if (found) return; /* otherwise we must add out module into the list */ swig_module.next = module_head->next; module_head->next = &swig_module; } /* When multiple interpeters are used, a module could have already been initialized in a different interpreter, but not yet have a pointer in this interpreter. In this case, we do not want to continue adding types... everything should be set up already */ if (init == 0) return; /* Now work on filling in swig_module.types */ #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: size %d\n", swig_module.size); #endif for (i = 0; i < swig_module.size; ++i) { swig_type_info *type = 0; swig_type_info *ret; swig_cast_info *cast; #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); #endif /* 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 */ #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: found type %s\n", type->name); #endif if (swig_module.type_initial[i]->clientdata) { type->clientdata = swig_module.type_initial[i]->clientdata; #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); #endif } } 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; #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); #endif if (swig_module.next != &swig_module) { ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); #ifdef SWIGRUNTIME_DEBUG if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); #endif } if (ret) { if (type == swig_module.type_initial[i]) { #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: skip old type %s\n", ret->name); #endif cast->type = ret; ret = 0; } else { /* Check for casting already in the list */ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); #ifdef SWIGRUNTIME_DEBUG if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); #endif if (!ocast) ret = 0; } } if (!ret) { #ifdef SWIGRUNTIME_DEBUG printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); #endif 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; } swig_module.types[i] = 0; #ifdef SWIGRUNTIME_DEBUG printf("**** SWIG_InitializeModule: Cast List ******\n"); for (i = 0; i < swig_module.size; ++i) { int j = 0; swig_cast_info *cast = swig_module.cast_initial[i]; printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); while (cast->type) { printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); cast++; ++j; } printf("---- Total casts: %d\n",j); } printf("**** SWIG_InitializeModule: Cast List ******\n"); #endif } /* 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 #if 0 { /* c-mode */ #endif } #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 *SWIGUNUSEDPARM(v)) { #if PY_VERSION_HEX >= 0x03000000 return PyUnicode_InternFromString("<Swig global variables>"); #else return PyString_FromString("<Swig global variables>"); #endif } SWIGINTERN PyObject * swig_varlink_str(swig_varlinkobject *v) { #if PY_VERSION_HEX >= 0x03000000 PyObject *str = PyUnicode_InternFromString("("); PyObject *tail; PyObject *joined; swig_globalvar *var; for (var = v->vars; var; var=var->next) { tail = PyUnicode_FromString(var->name); joined = PyUnicode_Concat(str, tail); Py_DecRef(str); Py_DecRef(tail); str = joined; if (var->next) { tail = PyUnicode_InternFromString(", "); joined = PyUnicode_Concat(str, tail); Py_DecRef(str); Py_DecRef(tail); str = joined; } } tail = PyUnicode_InternFromString(")"); joined = PyUnicode_Concat(str, tail); Py_DecRef(str); Py_DecRef(tail); str = joined; #else PyObject *str = PyString_FromString("("); swig_globalvar *var; for (var = v->vars; var; var=var->next) { PyString_ConcatAndDel(&str,PyString_FromString(var->name)); if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); } PyString_ConcatAndDel(&str,PyString_FromString(")")); #endif return str; } SWIGINTERN int swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { char *tmp; PyObject *str = swig_varlink_str(v); fprintf(fp,"Swig global variables "); fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str)); SWIG_Python_str_DelForPy3(tmp); Py_DECREF(str); return 0; } SWIGINTERN void swig_varlink_dealloc(swig_varlinkobject *v) { swig_globalvar *var = v->vars; while (var) { swig_globalvar *n = var->next; free(var->name); free(var); var = n; } } SWIGINTERN PyObject * swig_varlink_getattr(swig_varlinkobject *v, char *n) { PyObject *res = NULL; swig_globalvar *var = v->vars; while (var) { if (strcmp(var->name,n) == 0) { res = (*var->get_attr)(); break; } var = var->next; } if (res == NULL && !PyErr_Occurred()) { PyErr_SetString(PyExc_NameError,"Unknown C global variable"); } return res; } SWIGINTERN int swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { int res = 1; swig_globalvar *var = v->vars; while (var) { if (strcmp(var->name,n) == 0) { res = (*var->set_attr)(p); break; } var = var->next; } if (res == 1 && !PyErr_Occurred()) { PyErr_SetString(PyExc_NameError,"Unknown C global variable"); } return res; } SWIGINTERN PyTypeObject* swig_varlink_type(void) { static char varlink__doc__[] = "Swig var link object"; static PyTypeObject varlink_type; static int type_init = 0; if (!type_init) { const PyTypeObject tmp = { /* PyObject header changed in Python 3 */ #if PY_VERSION_HEX >= 0x03000000 PyVarObject_HEAD_INIT(&PyType_Type, 0) #else PyObject_HEAD_INIT(NULL) 0, /* Number of items in variable part (ob_size) */ #endif (char *)"swigvarlink", /* Type name (tp_name) */ sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ 0, /* Itemsize (tp_itemsize) */ (destructor) swig_varlink_dealloc, /* 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 */ (reprfunc) swig_varlink_str, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ 0, /* tp_flags */ varlink__doc__, /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ #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 }; varlink_type = tmp; /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ #if PY_VERSION_HEX < 0x03000000 varlink_type.ob_type = &PyType_Type; #endif type_init = 1; } 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; } SWIGINTERN PyObject * SWIG_globals(void) { static PyObject *_SWIG_globals = 0; if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); return _SWIG_globals; } /* ----------------------------------------------------------------------------- * 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_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) { const char *c = methods[i].ml_doc; if (c && (c = strstr(c, "swig_ptr: "))) { int j; swig_const_info *ci = 0; const 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; } } } } } } #ifdef __cplusplus } #endif /* -----------------------------------------------------------------------------* * Partial Init method * -----------------------------------------------------------------------------*/ #ifdef __cplusplus extern "C" #endif SWIGEXPORT #if PY_VERSION_HEX >= 0x03000000 PyObject* #else void #endif SWIG_init(void) { PyObject *m, *d; #if PY_VERSION_HEX >= 0x03000000 static struct PyModuleDef SWIG_module = { PyModuleDef_HEAD_INIT, (char *) SWIG_name, NULL, -1, SwigMethods, NULL, NULL, NULL, NULL }; #endif /* Fix SwigMethods to carry the callback ptrs when needed */ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); #if PY_VERSION_HEX >= 0x03000000 m = PyModule_Create(&SWIG_module); #else m = Py_InitModule((char *) SWIG_name, SwigMethods); #endif d = PyModule_GetDict(m); SWIG_InitializeModule(0); SWIG_InstallConstants(d,swig_const_table); /* gdal_python.i %init code */ if ( GDALGetDriverCount() == 0 ) { GDALAllRegister(); } SWIG_Python_SetConstant(d, "VSI_STAT_EXISTS_FLAG",SWIG_From_int(static_cast< int >(0x1))); SWIG_Python_SetConstant(d, "VSI_STAT_NATURE_FLAG",SWIG_From_int(static_cast< int >(0x2))); SWIG_Python_SetConstant(d, "VSI_STAT_SIZE_FLAG",SWIG_From_int(static_cast< int >(0x4))); #if PY_VERSION_HEX >= 0x03000000 return m; #else return; #endif }