pdb_samba_dsdb: implement PDB_CAP_TRUSTED_DOMAINS_EX related functions
[Samba.git] / lib / talloc / pytalloc.h
blob11653bf64cff894b007e6f7f6c8ce0f6e1dcd2e4
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
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/>.
20 #ifndef _PYTALLOC_H_
21 #define _PYTALLOC_H_
23 #include <Python.h>
24 #include <talloc.h>
26 typedef struct {
27 PyObject_HEAD
28 TALLOC_CTX *talloc_ctx;
29 void *ptr; /* eg the array element */
30 } pytalloc_Object;
32 /* Return the PyTypeObject for pytalloc_Object. Returns a new reference. */
33 PyTypeObject *pytalloc_GetObjectType(void);
35 /* Return the PyTypeObject for pytalloc_BaseObject. Returns a new reference. */
36 PyTypeObject *pytalloc_GetBaseObjectType(void);
38 /* Check whether a specific object is a talloc Object. */
39 int pytalloc_Check(PyObject *);
41 int pytalloc_BaseObject_check(PyObject *);
43 int _pytalloc_check_type(PyObject *py_obj, const char *type_name);
44 #define pytalloc_check_type(py_obj, type) \
45 _pytalloc_check_type((PyObject *)(py_obj), #type)
47 /* Retrieve the pointer for a pytalloc_object. Like talloc_get_type()
48 * but for pytalloc_Objects. */
49 void *_pytalloc_get_type(PyObject *py_obj, const char *type_name);
50 #define pytalloc_get_type(py_obj, type) ((type *)_pytalloc_get_type((PyObject *)(py_obj), #type))
52 void *_pytalloc_get_ptr(PyObject *py_obj);
53 #define pytalloc_get_ptr(py_obj) _pytalloc_get_ptr((PyObject *)(py_obj))
54 TALLOC_CTX *_pytalloc_get_mem_ctx(PyObject *py_obj);
55 #define pytalloc_get_mem_ctx(py_obj) _pytalloc_get_mem_ctx((PyObject *)(py_obj))
57 PyObject *pytalloc_steal_ex(PyTypeObject *py_type, TALLOC_CTX *mem_ctx, void *ptr);
58 PyObject *pytalloc_steal(PyTypeObject *py_type, void *ptr);
59 PyObject *pytalloc_reference_ex(PyTypeObject *py_type, TALLOC_CTX *mem_ctx, void *ptr);
60 #define pytalloc_reference(py_type, talloc_ptr) pytalloc_reference_ex(py_type, talloc_ptr, talloc_ptr)
62 #define pytalloc_new(type, typeobj) pytalloc_steal(typeobj, talloc_zero(NULL, type))
64 #if PY_MAJOR_VERSION < 3
66 * Don't use this anymore! Use pytalloc_GenericObject_steal()
67 * or pytalloc_GenericObject_reference().
69 #ifndef _DEPRECATED_
70 #ifdef HAVE___ATTRIBUTE__
71 #define _DEPRECATED_ __attribute__ ((deprecated))
72 #else
73 #define _DEPRECATED_
74 #endif
75 #endif
76 PyObject *pytalloc_CObject_FromTallocPtr(void *) _DEPRECATED_;
77 #endif
80 * Wrap a generic talloc pointer into a talloc.GenericObject,
81 * this is a subclass of talloc.BaseObject.
83 PyObject *pytalloc_GenericObject_steal_ex(TALLOC_CTX *mem_ctx, void *ptr);
84 #define pytalloc_GenericObject_steal(talloc_ptr) \
85 pytalloc_GenericObject_steal_ex(talloc_ptr, talloc_ptr)
86 PyObject *pytalloc_GenericObject_reference_ex(TALLOC_CTX *mem_ctx, void *ptr);
87 #define pytalloc_GenericObject_reference(talloc_ptr) \
88 pytalloc_GenericObject_reference_ex(talloc_ptr, talloc_ptr)
90 size_t pytalloc_BaseObject_size(void);
92 int pytalloc_BaseObject_PyType_Ready(PyTypeObject *type);
94 #endif /* _PYTALLOC_H_ */