Add convenience function for creating objects with NDR error codes.
[metze/samba/wip.git] / source4 / librpc / rpc / pyrpc.h
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
20 #ifndef _PYRPC_H_
21 #define _PYRPC_H_
22
23 #include "libcli/util/pyerrors.h"
24
25 #define PY_CHECK_TYPE(type, var, fail) \
26         if (!type ## _Check(var)) {\
27                 PyErr_Format(PyExc_TypeError, "Expected type %s", type ## _Type.tp_name); \
28                 fail; \
29         }
30
31 #define dom_sid2_Type dom_sid_Type
32 #define dom_sid28_Type dom_sid_Type
33 #define dom_sid2_Check dom_sid_Check
34 #define dom_sid28_Check dom_sid_Check
35
36 /* This macro is only provided by Python >= 2.3 */
37 #ifndef PyAPI_DATA
38 #   define PyAPI_DATA(RTYPE) extern RTYPE
39 #endif
40
41 typedef struct {
42         PyObject_HEAD
43         struct dcerpc_pipe *pipe;
44 } dcerpc_InterfaceObject;
45
46 PyAPI_DATA(PyTypeObject) dcerpc_InterfaceType;
47
48 #define PyErr_FromNdrError(err) PyErr_FromNTSTATUS(ndr_map_error2ntstatus(err))
49
50 #define PyErr_SetNdrError(err) \
51                 PyErr_SetObject(PyExc_RuntimeError, PyErr_FromNdrError(err))
52
53
54 #endif /* _PYRPC_H_ */