4e2556614846d8d76d0fecc0b992254b837a9232
[metze/samba/wip.git] / source4 / librpc / ndr / py_misc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 #include <Python.h>
20 #include "librpc/gen_ndr/misc.h"
21
22 #ifndef Py_RETURN_NONE
23 #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
24 #endif
25
26 static int py_GUID_cmp(PyObject *py_self, PyObject *py_other)
27 {
28         int ret;
29         struct GUID *self = py_talloc_get_ptr(py_self), *other;
30         other = py_talloc_get_ptr(py_other);
31         if (other == NULL)
32                 return -1;
33
34         ret = GUID_compare(self, other);
35         if (ret < 0) {
36                 return -1;
37         } else if (ret > 0) {
38                 return 1;
39         } else {
40                 return 0;
41         }
42 }
43
44 static PyObject *py_GUID_str(PyObject *py_self)
45 {
46         struct GUID *self = py_talloc_get_ptr(py_self);
47         char *str = GUID_string(NULL, self);
48         PyObject *ret = PyString_FromString(str);
49         talloc_free(str);
50         return ret;
51 }
52
53 static PyObject *py_GUID_repr(PyObject *py_self)
54 {
55         struct GUID *self = py_talloc_get_ptr(py_self);
56         char *str = GUID_string(NULL, self);
57         PyObject *ret = PyString_FromFormat("GUID('%s')", str);
58         talloc_free(str);
59         return ret;
60 }
61
62 static int py_GUID_init(PyObject *self, PyObject *args, PyObject *kwargs)
63 {
64         char *str = NULL;
65         NTSTATUS status;
66         struct GUID *guid = py_talloc_get_ptr(self);
67         const char *kwnames[] = { "str", NULL };
68
69         if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", discard_const_p(char *, kwnames), &str))
70                 return -1;
71
72         if (str != NULL) {
73                 status = GUID_from_string(str, guid);
74                 if (!NT_STATUS_IS_OK(status)) {
75                         PyErr_SetNTSTATUS(status);
76                         return -1;
77                 }
78         }
79
80         return 0;
81 }
82
83 static void py_GUID_patch(PyTypeObject *type)
84 {
85         type->tp_init = py_GUID_init;
86         type->tp_str = py_GUID_str;
87         type->tp_repr = py_GUID_repr;
88         type->tp_compare = py_GUID_cmp;
89 }
90
91 #define PY_GUID_PATCH py_GUID_patch
92