summaryrefslogtreecommitdiffstats
path: root/source/scripting/swig
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-02-06 00:34:44 +0000
committerTim Potter <tpot@samba.org>2005-02-06 00:34:44 +0000
commit6b499e73cab0555fc75a9cd9d68dc6d43a9227a8 (patch)
treee9cdf29c1cdbc0f39939a03b6a0db36943a901ed /source/scripting/swig
parent03d2f78d92cb597eb1ad1b881b9a88d984949986 (diff)
downloadsamba-6b499e73cab0555fc75a9cd9d68dc6d43a9227a8.tar.gz
samba-6b499e73cab0555fc75a9cd9d68dc6d43a9227a8.tar.xz
samba-6b499e73cab0555fc75a9cd9d68dc6d43a9227a8.zip
r5242: Check that argument is an integer or a long for uint32_t input
typemap. The uint32_t output typemap must return a Python long as an unsigned uint32_t cannot be fully represented by a Python int. Likewise for the NTSTATUS typemap.
Diffstat (limited to 'source/scripting/swig')
-rw-r--r--source/scripting/swig/samba.i19
1 files changed, 16 insertions, 3 deletions
diff --git a/source/scripting/swig/samba.i b/source/scripting/swig/samba.i
index 6cdf4240956..db48b3c4ba9 100644
--- a/source/scripting/swig/samba.i
+++ b/source/scripting/swig/samba.i
@@ -28,11 +28,24 @@
%apply char { int8_t };
%apply unsigned int { uint16_t };
%apply int { int16_t };
-%apply unsigned long { uint32_t };
-%apply long { int32_t };
%apply unsigned long long { uint64_t };
%apply long long { int64_t };
+%typemap(in) uint32_t {
+ if (PyLong_Check($input))
+ $1 = PyLong_AsUnsignedLong($input);
+ else if (PyInt_Check($input))
+ $1 = PyInt_AsLong($input);
+ else {
+ PyErr_SetString(PyExc_TypeError,"Expected a long or an int");
+ return NULL;
+ }
+}
+
+%typemap(out) uint32_t {
+ $result = PyLong_FromUnsignedLong($1);
+}
+
%typemap(out) NTSTATUS {
- $result = PyLong_FromLong(NT_STATUS_V($1));
+ $result = PyLong_FromUnsignedLong(NT_STATUS_V($1));
}