2 Unix SMB/CIFS implementation.
4 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
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/>.
26 _PUBLIC_ PyTypeObject
*PyTalloc_GetObjectType(void)
28 static PyTypeObject
*type
= NULL
;
35 mod
= PyImport_ImportModule("talloc");
40 type
= (PyTypeObject
*)PyObject_GetAttrString(mod
, "Object");
47 * Import an existing talloc pointer into a Python object.
49 _PUBLIC_ PyObject
*py_talloc_steal_ex(PyTypeObject
*py_type
, TALLOC_CTX
*mem_ctx
,
52 py_talloc_Object
*ret
= (py_talloc_Object
*)py_type
->tp_alloc(py_type
, 0);
53 ret
->talloc_ctx
= talloc_new(NULL
);
54 if (ret
->talloc_ctx
== NULL
) {
57 if (talloc_steal(ret
->talloc_ctx
, mem_ctx
) == NULL
) {
60 talloc_set_name_const(ret
->talloc_ctx
, py_type
->tp_name
);
62 return (PyObject
*)ret
;
66 * Import an existing talloc pointer into a Python object.
68 _PUBLIC_ PyObject
*py_talloc_steal(PyTypeObject
*py_type
, void *ptr
)
70 return py_talloc_steal_ex(py_type
, ptr
, ptr
);
75 * Import an existing talloc pointer into a Python object, leaving the
76 * original parent, and creating a reference to the object in the python
79 _PUBLIC_ PyObject
*py_talloc_reference_ex(PyTypeObject
*py_type
, TALLOC_CTX
*mem_ctx
, void *ptr
)
81 py_talloc_Object
*ret
;
87 ret
= (py_talloc_Object
*)py_type
->tp_alloc(py_type
, 0);
88 ret
->talloc_ctx
= talloc_new(NULL
);
89 if (ret
->talloc_ctx
== NULL
) {
92 if (talloc_reference(ret
->talloc_ctx
, mem_ctx
) == NULL
) {
95 talloc_set_name_const(ret
->talloc_ctx
, py_type
->tp_name
);
97 return (PyObject
*)ret
;
100 static void py_cobject_talloc_free(void *ptr
)
105 _PUBLIC_ PyObject
*PyCObject_FromTallocPtr(void *ptr
)
110 return PyCObject_FromVoidPtr(ptr
, py_cobject_talloc_free
);
113 _PUBLIC_
int PyTalloc_Check(PyObject
*obj
)
115 PyTypeObject
*tp
= PyTalloc_GetObjectType();
117 return PyObject_TypeCheck(obj
, tp
);