r15177: Wrap ldb_strerror() function.
[bbaumbach/samba-autobuild/.git] / source4 / lib / ldb / swig / ldb.i
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Swig interface to ldb.
5
6    Copyright (C) 2005,2006 Tim Potter <tpot@samba.org>
7    Copyright (C) 2006 Simo Sorce <idra@samba.org>
8
9      ** NOTE! The following LGPL license applies to the ldb
10      ** library. This does NOT imply that all of Samba is released
11      ** under the LGPL
12    
13    This library is free software; you can redistribute it and/or
14    modify it under the terms of the GNU Lesser General Public
15    License as published by the Free Software Foundation; either
16    version 2 of the License, or (at your option) any later version.
17
18    This library is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21    Lesser General Public License for more details.
22
23    You should have received a copy of the GNU Lesser General Public
24    License along with this library; if not, write to the Free Software
25    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 */
27
28 %module ldb
29
30 %{
31
32 /* Some typedefs to help swig along */
33
34 typedef unsigned char uint8_t;
35 typedef unsigned long long uint64_t;
36 typedef long long int64_t;
37
38 /* Include headers */
39
40 #include "lib/ldb/include/ldb.h"
41 #include "lib/talloc/talloc.h"
42
43 %}
44
45 %include "carrays.i"
46 %include "exception.i"
47
48 /*
49  * Constants
50  */
51
52 #define LDB_SUCCESS                             0
53 #define LDB_ERR_OPERATIONS_ERROR                1
54 #define LDB_ERR_PROTOCOL_ERROR                  2
55 #define LDB_ERR_TIME_LIMIT_EXCEEDED             3
56 #define LDB_ERR_SIZE_LIMIT_EXCEEDED             4
57 #define LDB_ERR_COMPARE_FALSE                   5
58 #define LDB_ERR_COMPARE_TRUE                    6
59 #define LDB_ERR_AUTH_METHOD_NOT_SUPPORTED       7
60 #define LDB_ERR_STRONG_AUTH_REQUIRED            8
61 /* 9 RESERVED */
62 #define LDB_ERR_REFERRAL                        10
63 #define LDB_ERR_ADMIN_LIMIT_EXCEEDED            11
64 #define LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION  12
65 #define LDB_ERR_CONFIDENTIALITY_REQUIRED        13
66 #define LDB_ERR_SASL_BIND_IN_PROGRESS           14
67 #define LDB_ERR_NO_SUCH_ATTRIBUTE               16
68 #define LDB_ERR_UNDEFINED_ATTRIBUTE_TYPE        17
69 #define LDB_ERR_INAPPROPRIATE_MATCHING          18
70 #define LDB_ERR_CONSTRAINT_VIOLATION            19
71 #define LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS       20
72 #define LDB_ERR_INVALID_ATTRIBUTE_SYNTAX        21
73 /* 22-31 unused */
74 #define LDB_ERR_NO_SUCH_OBJECT                  32
75 #define LDB_ERR_ALIAS_PROBLEM                   33
76 #define LDB_ERR_INVALID_DN_SYNTAX               34
77 /* 35 RESERVED */
78 #define LDB_ERR_ALIAS_DEREFERENCING_PROBLEM     36
79 /* 37-47 unused */
80 #define LDB_ERR_INAPPROPRIATE_AUTHENTICATION    48
81 #define LDB_ERR_INVALID_CREDENTIALS             49
82 #define LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS      50
83 #define LDB_ERR_BUSY                            51
84 #define LDB_ERR_UNAVAILABLE                     52
85 #define LDB_ERR_UNWILLING_TO_PERFORM            53
86 #define LDB_ERR_LOOP_DETECT                     54
87 /* 55-63 unused */
88 #define LDB_ERR_NAMING_VIOLATION                64
89 #define LDB_ERR_OBJECT_CLASS_VIOLATION          65
90 #define LDB_ERR_NOT_ALLOWED_ON_NON_LEAF         66
91 #define LDB_ERR_NOT_ALLOWED_ON_RDN              67
92 #define LDB_ERR_ENTRY_ALREADY_EXISTS            68
93 #define LDB_ERR_OBJECT_CLASS_MODS_PROHIBITED    69
94 /* 70 RESERVED FOR CLDAP */
95 #define LDB_ERR_AFFECTS_MULTIPLE_DSAS           71
96 /* 72-79 unused */
97 #define LDB_ERR_OTHER                           80
98
99 enum ldb_scope {LDB_SCOPE_DEFAULT=-1, 
100                 LDB_SCOPE_BASE=0, 
101                 LDB_SCOPE_ONELEVEL=1,
102                 LDB_SCOPE_SUBTREE=2};
103
104 /* 
105  * Wrap struct ldb_context
106  */
107
108 /* The ldb functions will crash if a NULL ldb context is passed so
109    catch this before it happens. */
110
111 %typemap(check) struct ldb_context* {
112         if ($1 == NULL)
113                 SWIG_exception(SWIG_ValueError, 
114                         "ldb context must be non-NULL");
115 }
116
117 /* 
118  * Wrap TALLOC_CTX
119  */
120
121 /* Use talloc_init() to create a parameter to pass to ldb_init().  Don't
122    forget to free it using talloc_free() afterwards. */
123
124 TALLOC_CTX *talloc_init(char *name);
125 int talloc_free(TALLOC_CTX *ptr);
126
127 /*
128  * Wrap struct ldb_val
129  */
130
131 %typemap(in) struct ldb_val *INPUT (struct ldb_val temp) {
132         $1 = &temp;
133         if (!PyString_Check($input)) {
134                 PyErr_SetString(PyExc_TypeError, "string arg expected");
135                 return NULL;
136         }
137         $1->length = PyString_Size($input);
138         $1->data = PyString_AsString($input);
139 }
140
141 %typemap(out) struct ldb_val {
142         $result = PyString_FromStringAndSize($1.data, $1.length);
143 }
144
145 /*
146  * Wrap struct ldb_result
147  */
148
149 %typemap(in, numinputs=0) struct ldb_result **OUT (struct ldb_result *temp_ldb_result) {
150         $1 = &temp_ldb_result;
151 }
152
153 %typemap(argout) struct ldb_result ** {
154         resultobj = SWIG_NewPointerObj(*$1, SWIGTYPE_p_ldb_result, 0);
155 }       
156
157 %types(struct ldb_result *);
158
159 /*
160  * Wrap struct ldb_message_element
161  */
162
163 %array_functions(struct ldb_val, ldb_val_array);
164
165 struct ldb_message_element {
166         unsigned int flags;
167         const char *name;
168         unsigned int num_values;
169         struct ldb_val *values;
170 };
171
172 /*
173  * Wrap struct ldb_message
174  */
175
176 %array_functions(struct ldb_message_element, ldb_message_element_array);
177
178 struct ldb_message {
179         struct ldb_dn *dn;
180         unsigned int num_elements;
181         struct ldb_message_element *elements;
182         void *private_data;
183 };
184
185 /*
186  * Wrap struct ldb_result
187  */
188
189 %array_functions(struct ldb_message *, ldb_message_ptr_array);
190
191 struct ldb_result {
192         unsigned int count;
193         struct ldb_message **msgs;
194         char **refs;
195         struct ldb_control **controls;
196 };
197
198 /*
199  * Wrap ldb functions 
200  */
201
202 int ldb_global_init(void);
203
204 struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx);
205
206 const char *ldb_errstring(struct ldb_context *ldb);
207 const char *ldb_strerror(int ldb_err);
208
209 int ldb_connect(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[]);
210
211 int ldb_search(struct ldb_context *ldb, const struct ldb_dn *base, enum ldb_scope scope, const char *expression, const char * const *attrs, struct ldb_result **OUT);
212
213 int ldb_delete(struct ldb_context *ldb, const struct ldb_dn *dn);
214
215 int ldb_rename(struct ldb_context *ldb, const struct ldb_dn *olddn, const struct ldb_dn *newdn);
216
217 int ldb_add(struct ldb_context *ldb, const struct ldb_message *message);
218
219 struct ldb_message *ldb_msg_new(void *mem_ctx);
220 struct ldb_message_element *ldb_msg_find_element(const struct ldb_message *msg, const char *attr_name);
221 int ldb_msg_add_value(struct ldb_message *msg, const char *attr_name, const struct ldb_val *INPUT);
222
223 struct ldb_dn *ldb_dn_explode(void *mem_ctx, const char *dn);
224 char *ldb_dn_linearize(void *mem_ctx, const struct ldb_dn *dn);