1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
"""Provide a more Pythonic and object-oriented interface to ldb."""
#
# Swig interface to Samba
#
# Copyright (C) Tim Potter 2006
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import ldb
class LdbError(Exception):
"""An exception raised when a ldb error occurs."""
pass
class LdbElement:
"""A class representing a ldb element as an array of values."""
def __init__(self, elt):
self.name = elt.name
self.flags = elt.flags
self.values = [ldb.ldb_val_array_getitem(elt.values, x)
for x in range(elt.num_values)]
def __repr__(self):
return '<%s(name=%s) instance at 0x%x' % (self.__class__.__name__,
`self.name`, id(self))
def __len__(self):
return self.values.len()
def __getitem__(self, key):
return self.values[key]
class LdbMessage:
"""A class representing a ldb message as a dict of ldb elements."""
def __init__(self, msg = None):
self.dn = None
self.private_data = None
self.elements = []
if msg is not None:
self.dn = msg.dn
self.private_data = msg.private_data
eltlist = \
[LdbElement(ldb.ldb_message_element_array_getitem(
msg.elements, x))
for x in range(msg.num_elements)]
self.elements = dict([(x.name, x) for x in eltlist])
def __repr__(self):
return '<%s(dn=%s) instance at 0x%x>' % (self.__class__.__name__,
`self.dn`, id(self))
def __getitem__(self, key):
return self.elements[key]
def keys(self):
return self.elements.keys()
class Ldb:
"""A class representing a binding to a ldb file."""
def __init__(self):
self.mem_ctx = ldb.talloc_init('python ldb')
self.ldb_ctx = ldb.init(self.mem_ctx)
def __del__(self):
ldb.talloc_free(self.mem_ctx)
def connect(self, url, flags = 0):
ldb.connect(self.ldb_ctx, url, flags, None)
def search(self, expression):
self._ldb_call(ldb.search, self.ldb_ctx, None, ldb.LDB_SCOPE_DEFAULT,
expression, None);
return [LdbMessage(ldb.ldb_message_ptr_array_getitem(result.msgs, ndx))
for ndx in range(result.count)]
def _ldb_call(self, fn, *args):
result = fn(*args)
if result != ldb.LDB_SUCCESS:
raise LdbError, (result, ldb.strerror(result))
def delete(self, dn):
self._ldb_call(ldb.delete, self.ldb_ctx, dn)
def rename(self, olddn, newdn):
self._ldb_call(ldb.rename, self.ldb_ctx, olddn, newdn)
def add(self, msg):
self._ldb_call(ldb.add, self.ldb_ctx, msg)
|