2 Unix SMB/CIFS implementation.
4 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2010-2011
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.
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.
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/>.
24 static PyTypeObject TallocObject_Type
;
26 #if PY_MAJOR_VERSION >= 3
27 #define PyStr_FromFormat PyUnicode_FromFormat
29 #define PyStr_FromFormat PyString_FromFormat
32 /* print a talloc tree report for a talloc python object */
33 static PyObject
*pytalloc_report_full(PyObject
*self
, PyObject
*args
)
35 PyObject
*py_obj
= Py_None
;
37 if (!PyArg_ParseTuple(args
, "|O", &py_obj
))
40 if (py_obj
== Py_None
) {
41 talloc_report_full(NULL
, stdout
);
43 talloc_report_full(pytalloc_get_mem_ctx(py_obj
), stdout
);
48 /* enable null tracking */
49 static PyObject
*pytalloc_enable_null_tracking(PyObject
*self
)
51 talloc_enable_null_tracking();
55 /* return the number of talloc blocks */
56 static PyObject
*pytalloc_total_blocks(PyObject
*self
, PyObject
*args
)
58 PyObject
*py_obj
= Py_None
;
60 if (!PyArg_ParseTuple(args
, "|O", &py_obj
))
63 if (py_obj
== Py_None
) {
64 return PyLong_FromLong(talloc_total_blocks(NULL
));
67 return PyLong_FromLong(talloc_total_blocks(pytalloc_get_mem_ctx(py_obj
)));
70 static PyMethodDef talloc_methods
[] = {
71 { "report_full", (PyCFunction
)pytalloc_report_full
, METH_VARARGS
,
72 "show a talloc tree for an object"},
73 { "enable_null_tracking", (PyCFunction
)pytalloc_enable_null_tracking
, METH_NOARGS
,
74 "enable tracking of the NULL object"},
75 { "total_blocks", (PyCFunction
)pytalloc_total_blocks
, METH_VARARGS
,
76 "return talloc block count"},
81 * Default (but only slightly more useful than the default) implementation of Repr().
83 static PyObject
*pytalloc_default_repr(PyObject
*obj
)
85 pytalloc_Object
*talloc_obj
= (pytalloc_Object
*)obj
;
86 PyTypeObject
*type
= (PyTypeObject
*)PyObject_Type(obj
);
88 return PyStr_FromFormat("<%s talloc object at 0x%p>",
89 type
->tp_name
, talloc_obj
->ptr
);
93 * Simple dealloc for talloc-wrapping PyObjects
95 static void pytalloc_dealloc(PyObject
* self
)
97 pytalloc_Object
*obj
= (pytalloc_Object
*)self
;
98 assert(talloc_unlink(NULL
, obj
->talloc_ctx
) != -1);
99 obj
->talloc_ctx
= NULL
;
100 self
->ob_type
->tp_free(self
);
104 * Default (but only slightly more useful than the default) implementation of cmp.
106 #if PY_MAJOR_VERSION >= 3
107 static PyObject
*pytalloc_default_richcmp(PyObject
*obj1
, PyObject
*obj2
, int op
)
111 if (Py_TYPE(obj1
) == Py_TYPE(obj2
)) {
112 /* When types match, compare pointers */
113 ptr1
= pytalloc_get_ptr(obj1
);
114 ptr2
= pytalloc_get_ptr(obj2
);
115 } else if (PyObject_TypeCheck(obj2
, &TallocObject_Type
)) {
116 /* Otherwise, compare types */
117 ptr1
= Py_TYPE(obj1
);
118 ptr2
= Py_TYPE(obj2
);
120 Py_INCREF(Py_NotImplemented
);
121 return Py_NotImplemented
;
124 case Py_EQ
: return PyBool_FromLong(ptr1
== ptr2
);
125 case Py_NE
: return PyBool_FromLong(ptr1
!= ptr2
);
126 case Py_LT
: return PyBool_FromLong(ptr1
< ptr2
);
127 case Py_GT
: return PyBool_FromLong(ptr1
> ptr2
);
128 case Py_LE
: return PyBool_FromLong(ptr1
<= ptr2
);
129 case Py_GE
: return PyBool_FromLong(ptr1
>= ptr2
);
131 Py_INCREF(Py_NotImplemented
);
132 return Py_NotImplemented
;
135 static int pytalloc_default_cmp(PyObject
*_obj1
, PyObject
*_obj2
)
137 pytalloc_Object
*obj1
= (pytalloc_Object
*)_obj1
,
138 *obj2
= (pytalloc_Object
*)_obj2
;
139 if (obj1
->ob_type
!= obj2
->ob_type
)
140 return ((char *)obj1
->ob_type
- (char *)obj2
->ob_type
);
142 return ((char *)pytalloc_get_ptr(obj1
) - (char *)pytalloc_get_ptr(obj2
));
146 static PyTypeObject TallocObject_Type
= {
147 .tp_name
= "talloc.Object",
148 .tp_doc
= "Python wrapper for a talloc-maintained object.",
149 .tp_basicsize
= sizeof(pytalloc_Object
),
150 .tp_dealloc
= (destructor
)pytalloc_dealloc
,
151 .tp_flags
= Py_TPFLAGS_DEFAULT
| Py_TPFLAGS_BASETYPE
,
152 .tp_repr
= pytalloc_default_repr
,
153 #if PY_MAJOR_VERSION >= 3
154 .tp_richcompare
= pytalloc_default_richcmp
,
156 .tp_compare
= pytalloc_default_cmp
,
160 #define MODULE_DOC PyDoc_STR("Python wrapping of talloc-maintained objects.")
162 #if PY_MAJOR_VERSION >= 3
163 static struct PyModuleDef moduledef
= {
164 PyModuleDef_HEAD_INIT
,
168 .m_methods
= talloc_methods
,
172 static PyObject
*module_init(void);
173 static PyObject
*module_init(void)
177 if (PyType_Ready(&TallocObject_Type
) < 0)
180 #if PY_MAJOR_VERSION >= 3
181 m
= PyModule_Create(&moduledef
);
183 m
= Py_InitModule3("talloc", talloc_methods
, MODULE_DOC
);
188 Py_INCREF(&TallocObject_Type
);
189 PyModule_AddObject(m
, "Object", (PyObject
*)&TallocObject_Type
);
193 #if PY_MAJOR_VERSION >= 3
194 PyMODINIT_FUNC
PyInit_talloc(void);
195 PyMODINIT_FUNC
PyInit_talloc(void)
197 return module_init();
200 void inittalloc(void);
201 void inittalloc(void)